[java-support] 07/10: JPAR-85 - Check final local variables.
Tom Zeller
tzeller at dragonacea.biz
Mon May 16 21:19:42 EDT 2016
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch JPAR-85
in repository java-support.
commit a03ec9025cc7aebf7f78eb84f94c9837257ea6e6
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon May 16 20:13:59 2016 -0500
JPAR-85 - Check final local variables.
---
checkstyle.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/checkstyle.xml b/checkstyle.xml
index e82da87..579806e 100644
--- a/checkstyle.xml
+++ b/checkstyle.xml
@@ -95,6 +95,9 @@
<module name="FinalParameters">
<property name="tokens" value="METHOD_DEF,CTOR_DEF,LITERAL_CATCH"/>
</module>
+ <module name="FinalLocalVariable">
+ <property name="tokens" value="PARAMETER_DEF,VARIABLE_DEF"/>
+ </module>
</module>
<module name="SuppressionCommentFilter">
<property name="offCommentFormat" value="\bCheck[Ss]tyle:\s*([\w|]+)\s+OFF\b"/>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list