You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2015/05/10 22:12:55 UTC

svn commit: r1678613 - /commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml

Author: oheger
Date: Sun May 10 20:12:54 2015
New Revision: 1678613

URL: http://svn.apache.org/r1678613
Log:
Added a checkstyle suppression for an unused import in DataConfiguration.

This is an exception class which is referenced in the Javadocs for almost all
methods.

Modified:
    commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml

Modified: commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml?rev=1678613&r1=1678612&r2=1678613&view=diff
==============================================================================
--- commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml (original)
+++ commons/proper/configuration/trunk/conf/checkstyle-suppressions.xml Sun May 10 20:12:54 2015
@@ -36,4 +36,9 @@
       lines="1074-1107"/>
 
     <suppress files="FileUtils\.java" checks="[a-zA-Z0-9]*"/>
+
+    <!-- There is an import for an exception class which is used in the
+         Javadoc for almost every method.
+    -->
+    <suppress checks="UnusedImports" files="DataConfiguration"/>
 </suppressions>