You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2013/11/28 10:38:58 UTC

svn commit: r1546327 - /commons/proper/imaging/trunk/src/conf/checkstyle.xml

Author: ebourg
Date: Thu Nov 28 09:38:58 2013
New Revision: 1546327

URL: http://svn.apache.org/r1546327
Log:
Allow static star imports

Modified:
    commons/proper/imaging/trunk/src/conf/checkstyle.xml

Modified: commons/proper/imaging/trunk/src/conf/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/conf/checkstyle.xml?rev=1546327&r1=1546326&r2=1546327&view=diff
==============================================================================
--- commons/proper/imaging/trunk/src/conf/checkstyle.xml (original)
+++ commons/proper/imaging/trunk/src/conf/checkstyle.xml Thu Nov 28 09:38:58 2013
@@ -94,7 +94,9 @@ limitations under the License.
 
         <!-- Checks for imports                              -->
         <!-- See http://checkstyle.sf.net/config_import.html -->
-        <module name="AvoidStarImport"/>
+        <module name="AvoidStarImport">
+            <property name="allowStaticMemberImports" value="true"/>
+        </module>
         <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
         <module name="RedundantImport"/>
         <module name="UnusedImports"/>