You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/11/14 19:35:54 UTC

svn commit: r836236 - /commons/proper/dbcp/trunk/findbugs-exclude-filter.xml

Author: psteitz
Date: Sat Nov 14 18:35:53 2009
New Revision: 836236

URL: http://svn.apache.org/viewvc?rev=836236&view=rev
Log:
Made valueOf exlcusions apply to all classes.

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

Modified: commons/proper/dbcp/trunk/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/dbcp/trunk/findbugs-exclude-filter.xml?rev=836236&r1=836235&r2=836236&view=diff
==============================================================================
--- commons/proper/dbcp/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/dbcp/trunk/findbugs-exclude-filter.xml Sat Nov 14 18:35:53 2009
@@ -24,7 +24,7 @@
 <FindBugsFilter>
   <!--  Minimum JDK level is still 1.4, so valueOf(int) is not available -->
   <Match>
-    <Class name="org.apache.commons.dbcp.PoolingConnection$PStmtKey" />
-    <Bug pattern="DM_NUMBER_CTOR" />
+    <Class>*</Class>
+    <Bug pattern="DM_NUMBER_CTOR,DM_BOOLEAN_CTOR" />
   </Match>
 </FindBugsFilter>