You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/05/23 15:15:10 UTC

svn commit: r1485692 - /commons/proper/dbcp/branches/DBCP_1_4_x_BRANCH/findbugs-exclude-filter.xml

Author: ggregory
Date: Thu May 23 13:15:10 2013
New Revision: 1485692

URL: http://svn.apache.org/r1485692
Log:
Revert changes due to a -1 from pseitz. Also the new version of this file works with the current FindBugs version.

Modified:
    commons/proper/dbcp/branches/DBCP_1_4_x_BRANCH/findbugs-exclude-filter.xml

Modified: commons/proper/dbcp/branches/DBCP_1_4_x_BRANCH/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/branches/DBCP_1_4_x_BRANCH/findbugs-exclude-filter.xml?rev=1485692&r1=1485691&r2=1485692&view=diff
==============================================================================
--- commons/proper/dbcp/branches/DBCP_1_4_x_BRANCH/findbugs-exclude-filter.xml (original)
+++ commons/proper/dbcp/branches/DBCP_1_4_x_BRANCH/findbugs-exclude-filter.xml Thu May 23 13:15:10 2013
@@ -22,4 +22,9 @@
   put here to instruct findbugs it must ignore them.
 -->
 <FindBugsFilter>
+  <!--  Minimum JDK level is still 1.4, so valueOf(int) is not available -->
+  <Match>
+    <Class name="*" />
+    <Bug pattern="DM_NUMBER_CTOR" />
+  </Match>
 </FindBugsFilter>