Author: markt
Date: Fri Nov 24 17:57:14 2017
New Revision: 1816248

URL: http://svn.apache.org/viewvc?rev=1816248&view=rev
Log:
Fix a handful of low severity SpotBugs reports
- 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=1816248&r1=1816247&r2=1816248&view=diff
==============================================================================
--- tomcat/trunk/res/findbugs/filter-false-positives.xml (original)
+++ tomcat/trunk/res/findbugs/filter-false-positives.xml Fri Nov 24 17:57:14 
2017
@@ -324,6 +324,16 @@
     <Bug code="VO" />
   </Match>
   <Match>
+    <!-- These fields should not be serialized with the session -->
+    <Class name="org.apache.catalina.session.StandardSession" />
+    <Or>
+      <Field name="listeners" />
+      <Field name="notes" />
+      <Field name="support" />
+    </Or>
+    <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" />
+  </Match>
+  <Match>
     <!-- Use of null is deliberate -->
     <Class name="org.apache.catalina.ssi.ExpressionParseTree" />
     <Method name="pushOpp" />



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

Reply via email to