Author: markt
Date: Thu Mar  8 21:21:23 2018
New Revision: 1826278

URL: http://svn.apache.org/viewvc?rev=1826278&view=rev
Log:
A few more 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=1826278&r1=1826277&r2=1826278&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Thu Mar  8 21:21:23 
2018
@@ -416,6 +416,16 @@
     <Bug pattern="SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING" />
   </Match>
   <Match>
+    <!-- Syncs aren't intended to protect these fields -->
+    <Class name="org.apache.catalina.session.JDBCStore" />
+    <Or>
+      <Field name="dataSourceName" />
+      <Field name="sessionAppCol" />
+      <Field name="sessionIdCol" />
+    </Or>
+    <Bug pattern="IS2_INCONSISTENT_SYNC" />
+  </Match>
+  <Match>
     <!-- We can live with the threading issue. See code comment for details. 
-->
     <Class name="org.apache.catalina.session.ManagerBase" />
     <Method name="generateSessionId" />



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

Reply via email to