Example
public class
RuleFilter
{
void
a () {
}
}
Solution
Rename the method to a longer name that identifies the method's purpose.
Note: This rule does not consider any "main" method, as this name often has special functioning.
public class
RuleFilter
{
void
FilterDefinition () {
}
}