You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/08/26 00:36:47 UTC

svn commit: r1697779 - /commons/proper/bcel/trunk/checkstyle.xml

Author: sebb
Date: Tue Aug 25 22:36:46 2015
New Revision: 1697779

URL: http://svn.apache.org/r1697779
Log:
OK to wildcard import Assert

Modified:
    commons/proper/bcel/trunk/checkstyle.xml

Modified: commons/proper/bcel/trunk/checkstyle.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/checkstyle.xml?rev=1697779&r1=1697778&r2=1697779&view=diff
==============================================================================
--- commons/proper/bcel/trunk/checkstyle.xml (original)
+++ commons/proper/bcel/trunk/checkstyle.xml Tue Aug 25 22:36:46 2015
@@ -84,7 +84,9 @@ limitations under the License.
 
     <!-- Checks for imports                              -->
     <!-- See http://checkstyle.sf.net/config_imports.html -->
-    <module name="AvoidStarImport"/>
+    <module name="AvoidStarImport">
+        <property name="excludes" value="org.junit.Assert"/>
+    </module>
     <module name="IllegalImport"/> <!-- defaults to sun.* packages -->
     <module name="RedundantImport"/>
     <module name="UnusedImports"/>