Author: markt Date: Tue Dec 5 21:52:41 2017 New Revision: 1817242 URL: http://svn.apache.org/viewvc?rev=1817242&view=rev Log: Another follow-up to r1817240
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=1817242&r1=1817241&r2=1817242&view=diff ============================================================================== --- tomcat/trunk/res/findbugs/filter-false-positives.xml (original) +++ tomcat/trunk/res/findbugs/filter-false-positives.xml Tue Dec 5 21:52:41 2017 @@ -444,6 +444,15 @@ <Bug pattern="ML_SYNC_ON_FIELD_TO_GUARD_CHANGING_THAT_FIELD" /> </Match> <Match> + <!-- Fields are always recalculated on access --> + <Class name="org.apache.catalina.tribes.tipis.AbstractReplicatedMap$MapMessage" /> + <Or> + <Field name="key" /> + <Field name="value" /> + </Or> + <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED" /> + </Match> + <Match> <!-- Intentional in case thread is waiting --> <Class name="org.apache.catalina.tribes.transport.RxTaskPool"/> <Method name="returnWorker"/> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org