Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2013-10-29 04:12:43 +0000
committerEugene Tarassov2013-10-29 04:12:43 +0000
commitd147deb47fe1b34649aa90b100b8e200c057c529 (patch)
tree687a37aaf51dd9a4d198948cafb23e54cf3ce5ef
parentbb227e3ed8c7eb61bfe338c744e6be285e85e9cb (diff)
downloadorg.eclipse.tcf-d147deb47fe1b34649aa90b100b8e200c057c529.tar.gz
org.eclipse.tcf-d147deb47fe1b34649aa90b100b8e200c057c529.tar.xz
org.eclipse.tcf-d147deb47fe1b34649aa90b100b8e200c057c529.zip
TCF Core: added exclude statements for bogus FindBugs warnings
-rw-r--r--admin/findbugs-exclude.xml42
1 files changed, 14 insertions, 28 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index c58163ac1..a5e796ed5 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -240,26 +240,20 @@
<!-- Filters for org.eclipse.tcf bundle -->
<Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
- <And>
- <Class name="org.eclipse.tcf.Activator"/>
- <Method name="initialize"/>
- </And>
+ <Class name="org.eclipse.tcf.Activator"/>
+ <Method name="initialize"/>
</Match>
<!-- Filters for org.eclipse.tcf.core bundle -->
<Match>
<Bug pattern="EI_EXPOSE_REP2"/>
- <And>
- <Class name="org.eclipse.tcf.core.Command"/>
- <Method name="initialize"/>
- </And>
+ <Class name="org.eclipse.tcf.core.Command"/>
+ <Method name="initialize"/>
</Match>
<Match>
<Bug pattern="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE"/>
- <And>
- <Class name="org.eclipse.tcf.core.Command"/>
- <Method name="appendErrorProps"/>
- </And>
+ <Class name="org.eclipse.tcf.core.Command"/>
+ <Method name="appendErrorProps"/>
</Match>
<Match>
<Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
@@ -267,34 +261,26 @@
</Match>
<Match>
<Bug pattern="NN_NAKED_NOTIFY"/>
- <And>
- <Class name="org.eclipse.tcf.protocol.Protocol"/>
- <Method name="invokeAndWait"/>
- </And>
+ <Class name="org.eclipse.tcf.protocol.Protocol$3"/>
+ <Method name="run"/>
</Match>
<Match>
<Bug pattern="UW_UNCOND_WAIT"/>
- <And>
- <Class name="org.eclipse.tcf.protocol.Protocol"/>
- <Method name="invokeAndWait"/>
- </And>
+ <Class name="org.eclipse.tcf.protocol.Protocol"/>
+ <Method name="invokeAndWait"/>
</Match>
<Match>
<Bug pattern="WA_NOT_IN_LOOP"/>
- <And>
- <Class name="org.eclipse.tcf.protocol.Protocol"/>
- <Method name="invokeAndWait"/>
- </And>
+ <Class name="org.eclipse.tcf.protocol.Protocol"/>
+ <Method name="invokeAndWait"/>
</Match>
<!-- Filters for org.eclipse.tcf.debug bundle -->
<Match>
<Bug pattern="LI_LAZY_INIT_STATIC"/>
- <And>
- <Class name="org.eclipse.tcf.internal.debug.model.TCFLaunch"/>
- <Method name="getListeners"/>
- </And>
+ <Class name="org.eclipse.tcf.internal.debug.model.TCFLaunch"/>
+ <Method name="getListeners"/>
</Match>
<!-- Filters for org.eclipse.tcf.debug.ui bundle -->

Back to the top