Author: markt
Date: Thu Jan 17 16:20:51 2013
New Revision: 1434758
URL: http://svn.apache.org/viewvc?rev=1434758&view=rev
Log:
One final FindBugs false positive
Modified:
tomcat/trunk/res/findbugs/filter-false-positives.xml
Modified: tomcat/trunk/res/findbugs/filter-false-positives.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/res/findbugs/filter-false-positives.xml?rev=1434758&r1=1434757&r2=1434758&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Jan 17 16:20:51
2013
@@ -244,6 +244,12 @@
<Bug code="Nm" />
</Match>
<Match>
+ <!-- Return value is ignored but a null result will trigger an exception
-->
+ <Class name="org.apache.tomcat.jdbc.pool.ConnectionPool$ConnectionFuture"
/>
+ <Method name="get" />
+ <Bug code="RV" />
+ </Match>
+ <Match>
<!-- Lock is released -->
<Class name="org.apache.tomcat.jdbc.pool.FairBlockingQueue" />
<Method name="poll" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]