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/04/18 21:03:24 UTC

svn commit: r1674553 - /commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml

Author: oheger
Date: Sat Apr 18 19:03:24 2015
New Revision: 1674553

URL: http://svn.apache.org/r1674553
Log:
Added classes generated by JavaCC to Findbugs exclusions.

We do not have much impact on these classes, so it is pointless to let them be
checked by Findbugs.

Modified:
    commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml

Modified: commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml?rev=1674553&r1=1674552&r2=1674553&view=diff
==============================================================================
--- commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml (original)
+++ commons/proper/configuration/trunk/conf/findbugs-exclude-filter.xml Sat Apr 18 19:03:24 2015
@@ -67,4 +67,17 @@
     <Field name="sourceData" />
     <Bug pattern="IS2_INCONSISTENT_SYNC" />
   </Match>
+
+  <!-- Reason: All these classes are generated by JavaCC.
+  -->
+  <Match>
+    <Or>
+      <Class name="org.apache.commons.configuration2.plist.ParseException" />
+      <Class name="org.apache.commons.configuration2.plist.PropertyListParser" />
+      <Class name="org.apache.commons.configuration2.plist.PropertyListParserConstants" />
+      <Class name="org.apache.commons.configuration2.plist.PropertyListParserTokenManager" />
+      <Class name="org.apache.commons.configuration2.plist.SimpleCharStream" />
+      <Class name="org.apache.commons.configuration2.plist.TokenMgrError" />
+    </Or>
+  </Match>
 </FindBugsFilter>