This rule is Obsolete | |
Synopsis: | Method name does not begin with a lower case character |
Language: | Java |
Severity Level: | 4 |
Category: | Naming |
Description: |
Method names should always begin with a lower case character, and should not contain underscores.public class Foo { public void fooStuff() { } } |