Pattern: Use of space after method declaration name
Issue: -
Checks whether method declarations do not contain unnecessary whitespace between method name and the opening parenthesis for parameter list.
class ClassWithWhitespaceInConstructorDeclaration {
ClassWithWhitespaceInConstructorDeclaration () { //violation
}
void methodWithWhitespaceInDeclaration () { //violation
}
}