Author: markt
Date: Thu May 17 08:44:19 2018
New Revision: 1831761

URL: http://svn.apache.org/viewvc?rev=1831761&view=rev
Log:
Silence a new false positive as a result of fixing BZ 50175 

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=1831761&r1=1831760&r2=1831761&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu May 17 08:44:19 
2018
@@ -280,6 +280,12 @@
     <Pattern code="VO_VOLATILE_INCREMENT" />
   </Match>
   <Match>
+    <!-- Thread never executed so empty run method not an issue -->
+    <Class name="org.apache.catalina.loader.WebappClassLoaderBase" />
+    <Method name="clearReferences" />
+    <Bug pattern="DM_USELESS_THREAD" />
+  </Match>
+  <Match>
     <!-- Field is only modified during Servlet load -->
     <Class name="org.apache.catalina.manager.host.HostManagerServlet" />
     <Or>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to