Author: markt
Date: Thu Jul 18 17:34:37 2013
New Revision: 1504558
URL: http://svn.apache.org/r1504558
Log:
Filter out three false positives (the only warnings the trunk code base
currently generates)
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=1504558&r1=1504557&r2=1504558&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Jul 18 17:34:37
2013
@@ -229,6 +229,12 @@
<Bug code="UL" />
</Match>
<Match>
+ <!-- Returning null is required by the EL specification -->
+ <Class name="org.apache.el.lang.ELSupport" />
+ <Method name="coerceToBoolean"/>
+ <Bug pattern="NP_BOOLEAN_RETURN_NULL"/>
+ </Match>
+ <Match>
<!-- JspC will not be used under a security manager -->
<Class name="org.apache.jasper.JspC"/>
<Method name="initClassLoader"/>
@@ -490,6 +496,12 @@
<!-- Test code -->
<Match>
+ <!-- Code is intentionally unused -->
+ <Class name="org.apache.catalina.authenticator.TestBasicAuthParser"/>
+ <Method name="testAuthMethodBadMethod"/>
+ <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
+ </Match>
+ <Match>
<Class
name="org.apache.catalina.core.TestApplicationSessionCookieConfig$CustomContext"
/>
<Method name="getState"/>
<Bug code="UG" />
@@ -608,6 +620,12 @@
<Bug code="ST" />
</Match>
<Match>
+ <!-- Return value of latch is intentionally ignored -->
+ <Class name="org.apache.tomcat.websocket.TestWebSocketFrameClient"/>
+ <Method name="testConnectToServerEndpointSSL"/>
+ <Bug pattern="RV_RETURN_VALUE_IGNORED"/>
+ </Match>
+ <Match>
<Class name="org.apache.tomcat.util.net.TestSsl" />
<Or>
<Method name="testRenegotiateFail" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]