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 2009/03/18 00:51:22 UTC

svn commit: r755447 - /commons/proper/lang/trunk/findbugs-exclude-filter.xml

Author: sebb
Date: Tue Mar 17 23:51:21 2009
New Revision: 755447

URL: http://svn.apache.org/viewvc?rev=755447&view=rev
Log:
Two more false positives

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

Modified: commons/proper/lang/trunk/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/findbugs-exclude-filter.xml?rev=755447&r1=755446&r2=755447&view=diff
==============================================================================
--- commons/proper/lang/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/lang/trunk/findbugs-exclude-filter.xml Tue Mar 17 23:51:21 2009
@@ -35,4 +35,16 @@
     <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
   </Match>
 
+  <Match>
+    <Class name="org.apache.commons.lang.BooleanUtils" />
+    <Method name="negate"/>
+    <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
+  </Match>
+
+  <Match>
+    <Class name="org.apache.commons.lang.BooleanUtils" />
+    <Method name="toBooleanObject"/>
+    <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
+  </Match>
+
 </FindBugsFilter>