Skip to content

Commit

Permalink
Stop erroring on missing final for params, methods
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyekl committed Dec 4, 2011
1 parent 086cff5 commit d61c77d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions config/sun_checks.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
<module name="JavadocVariable"/>
<module name="JavadocStyle"/>
<module name="ConstantName"/>

<!-- Don't like errors for `final` missing
<module name="LocalFinalVariableName"/>
-->

<module name="LocalVariableName"/>
<module name="MemberName"/>
<module name="MethodName"/>
Expand Down Expand Up @@ -81,12 +85,20 @@
<module name="SimplifyBooleanExpression"/>
<module name="SimplifyBooleanReturn"/>
<module name="DesignForExtension"/>

<!-- Don't like errors for `final` missing
<module name="FinalClass"/>
-->

<module name="HideUtilityClassConstructor"/>
<module name="InterfaceIsType"/>
<module name="VisibilityModifier"/>
<module name="ArrayTypeStyle"/>

<!-- Don't like errors for `final` missing
<module name="FinalParameters"/>
-->

<module name="TodoComment"/>
<module name="UpperEll"/>
</module>
Expand Down

0 comments on commit d61c77d

Please sign in to comment.