Author: tfischer
Date: Mon Aug 27 03:47:59 2012
New Revision: 1377562
URL: http://svn.apache.org/viewvc?rev=1377562&view=rev
Log:
ignore false positive for synchronisation bug
Modified:
db/torque/torque4/trunk/torque-runtime/src/main/plugin-config/findbugs-exclude.xml
Modified: db/torque/torque4/trunk/torque-runtime/src/main/plugin-config/findbugs-exclude.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-runtime/src/main/plugin-config/findbugs-exclude.xml?rev=1377562&r1=1377561&r2=1377562&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-runtime/src/main/plugin-config/findbugs-exclude.xml (original)
+++ db/torque/torque4/trunk/torque-runtime/src/main/plugin-config/findbugs-exclude.xml Mon
Aug 27 03:47:59 2012
@@ -73,4 +73,14 @@
<Class name="org.apache.torque.util.Criteria$Criterion" />
<Bug pattern=" SE_INNER_CLASS,SIC_INNER_SHOULD_BE_STATIC" />
</Match>
+ <Match>
+ <!--
+ Reported synchronization bug for field lastResults
+ seems to come from invalidateResult method.
+ I cannot see any problems caused by that.
+ -->
+ <Class name="org.apache.torque.util.LargeSelect" />
+ <Bug pattern="IS2_INCONSISTENT_SYNC" />
+ <Field name="lastResults"/>
+ </Match>
</FindBugsFilter>
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org
|