Author: markt
Date: Thu Feb 15 21:46:25 2018
New Revision: 1824372

URL: http://svn.apache.org/viewvc?rev=1824372&view=rev
Log:
Silence a couple of SpotBugs false positives

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=1824372&r1=1824371&r2=1824372&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Feb 15 21:46:25 
2018
@@ -257,6 +257,18 @@
     <Bug code="DE" />
   </Match>
   <Match>
+    <!-- False positive caused by additional method syncs -->
+    <Class name="org.apache.catalina.ha.session.DeltaManager" />
+     <Field name="receiverQueue" />
+    <Pattern code="IS2_INCONSISTENT_SYNC" />
+  </Match>
+  <Match>
+    <!-- False positive caused by method syncs -->
+    <Class name="org.apache.catalina.ha.session.JvmRouteBinderValve" />
+     <Field name="cluster" />
+    <Pattern code="IS2_INCONSISTENT_SYNC" />
+  </Match>
+  <Match>
     <!-- Field is only modified during Servlet load -->
     <Class name="org.apache.catalina.manager.host.HostManagerServlet" />
     <Bug code="MSF" />



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

Reply via email to