Reports methods with mutator-like names that have no parameter clauses.
For a method with side effects, it is convention to have an empty parameter clause to indicate that it is not just an accessor method.
The quick-fix adds an empty parameter clause.
Example:
trait Test {
def updateAll: Boolean
}
After the quick-fix is applied:
trait Test {
def updateAll(): Boolean
}