Author: markt
Date: Thu Jan 17 15:59:13 2013
New Revision: 1434746
URL: http://svn.apache.org/viewvc?rev=1434746&view=rev
Log:
Silence a valid FindBugs warning about a problem we have chosen to accept
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=1434746&r1=1434745&r2=1434746&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Jan 17 15:59:13
2013
@@ -262,6 +262,16 @@
<Bug code="UL" />
</Match>
<Match>
+ <!-- Lack of thread-safety is accepted in return for better performance.
-->
+ <Class
name="org.apache.tomcat.jdbc.pool.interceptor.SlowQueryReport$QueryStats" />
+ <Or>
+ <Method name="add" />
+ <Method name="failure" />
+ <Method name="prepare" />
+ </Or>
+ <Bug code="VO" />
+ </Match>
+ <Match>
<!-- Wait is in AprSocket -->
<Class name="org.apache.tomcat.jni.socket.AprSocketContext$AprPoller" />
<Method name="run"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]