Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorEugene Tarassov2013-10-28 12:38:21 +0000
committerEugene Tarassov2013-10-28 12:38:21 +0000
commitbb227e3ed8c7eb61bfe338c744e6be285e85e9cb (patch)
tree32a5435cff387aa90862e6b3254f39a0a3e58639 /admin
parentc3935341a5b9e1d14fab4a5f058d7b681aa62fe0 (diff)
downloadorg.eclipse.tcf-bb227e3ed8c7eb61bfe338c744e6be285e85e9cb.tar.gz
org.eclipse.tcf-bb227e3ed8c7eb61bfe338c744e6be285e85e9cb.tar.xz
org.eclipse.tcf-bb227e3ed8c7eb61bfe338c744e6be285e85e9cb.zip
TCF Core: added exclude statements for bogus FindBugs warnings
Diffstat (limited to 'admin')
-rw-r--r--admin/findbugs-exclude.xml32
1 files changed, 31 insertions, 1 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index 67a46cdbf..c58163ac1 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -265,8 +265,38 @@
<Bug pattern="PZLA_PREFER_ZERO_LENGTH_ARRAYS"/>
<Package name="org.eclipse.tcf.internal.services.remote"/>
</Match>
+ <Match>
+ <Bug pattern="NN_NAKED_NOTIFY"/>
+ <And>
+ <Class name="org.eclipse.tcf.protocol.Protocol"/>
+ <Method name="invokeAndWait"/>
+ </And>
+ </Match>
+ <Match>
+ <Bug pattern="UW_UNCOND_WAIT"/>
+ <And>
+ <Class name="org.eclipse.tcf.protocol.Protocol"/>
+ <Method name="invokeAndWait"/>
+ </And>
+ </Match>
+ <Match>
+ <Bug pattern="WA_NOT_IN_LOOP"/>
+ <And>
+ <Class name="org.eclipse.tcf.protocol.Protocol"/>
+ <Method name="invokeAndWait"/>
+ </And>
+ </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>
+ </Match>
-
<!-- Filters for org.eclipse.tcf.debug.ui bundle -->
<Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>

Back to the top