Author: markt
Date: Wed Oct 5 18:54:11 2016
New Revision: 1763478
URL: http://svn.apache.org/viewvc?rev=1763478&view=rev
Log:
Fix 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=1763478&r1=1763477&r2=1763478&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Wed Oct 5 18:54:11
2016
@@ -172,6 +172,12 @@
<Bug code="SWL" />
</Match>
<Match>
+ <!-- null return value is documented -->
+ <Class name="org.apache.catalina.core.StandardWrapper" />
+ <Method name="isSingleThreadModel" />
+ <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
+ </Match>
+ <Match>
<!-- The code is adding HTTP request headers, not parameters and the
header parsing on input will have removed any CR or LF characters. -->
<Class name="org.apache.catalina.filters.CorsFilter" />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]