This rule is Obsolete | |
Synopsis: | Document empty constructor |
Language: | Java |
Severity Level: | 4 |
Category: | Design |
Description: |
Uncommented Empty Constructor finds instances where a constructor does not
contain statements, but there is no comment. By explicitly commenting empty
constructors it is easier to distinguish between intentional (commented)
and unintentional empty constructors.public Foo() { super(); } |