Author: markt
Date: Sun Aug 26 19:17:10 2018
New Revision: 1839242

URL: http://svn.apache.org/viewvc?rev=1839242&view=rev
Log:
Fix a false positive

Modified:
    tomcat/tc8.5.x/trunk/res/findbugs/filter-false-positives.xml

Modified: tomcat/tc8.5.x/trunk/res/findbugs/filter-false-positives.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/res/findbugs/filter-false-positives.xml?rev=1839242&r1=1839241&r2=1839242&view=diff
==============================================================================
--- tomcat/tc8.5.x/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/tc8.5.x/trunk/res/findbugs/filter-false-positives.xml Sun Aug 26 
19:17:10 2018
@@ -1205,6 +1205,15 @@
     <Bug pattern="DLS_DEAD_LOCAL_STORE"/>
   </Match>
   <Match>
+    <!-- Field set via injection-->
+    <Class name="org.apache.naming.TesterInjectionServlet" />
+    <Or>
+      <Field name="property1" />
+      <Field name="property3" />
+    </Or>
+    <Bug pattern="UWF_NULL_FIELD" />
+  </Match>
+  <Match>
     <!-- Use of statics is unavoidable in all cases -->
     <!-- Better to use it consistently rather than only where necessary -->
     <Class name="org.apache.tomcat.jdbc.pool.interceptor.TestInterceptor" />



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to