Revision: 12768
http://sourceforge.net/p/foray/code/12768
Author: victormote
Date: 2022-12-03 18:17:25 +0000 (Sat, 03 Dec 2022)
Log Message:
-----------
Allow static imports.
Modified Paths:
--------------
trunk/foray/foray-00-master/config/checkstyle/checkstyle-config.xml
Modified: trunk/foray/foray-00-master/config/checkstyle/checkstyle-config.xml
===================================================================
--- trunk/foray/foray-00-master/config/checkstyle/checkstyle-config.xml 2022-12-03 00:13:35 UTC (rev 12767)
+++ trunk/foray/foray-00-master/config/checkstyle/checkstyle-config.xml 2022-12-03 18:17:25 UTC (rev 12768)
@@ -170,11 +170,10 @@
<!-- Avoid magic numbers. -->
<module name="MagicNumber"/>
- <!-- Avoid star, static, redundant and unused imports. -->
+ <!-- Avoid star, redundant and unused imports. -->
<module name="AvoidStarImport">
<property name="severity" value="error"/>
</module>
- <module name="AvoidStaticImport"/>
<module name="RedundantImport"/>
<module name="UnusedImports">
<!--Ignore this for now because it doesn't handle javadoc correctly.-->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|