Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-04-25 16:41:43 +0000
committerUwe Stieber2012-04-25 16:41:43 +0000
commita8f0509c82b4047cf398b27ad61916fee788f77f (patch)
treea0f1933ce528f51facc320572bd3f48481b70a69 /admin/findbugs-exclude.xml
parentac996bb47b63d2bd693fe4199d8b46b0060a24c1 (diff)
downloadorg.eclipse.tcf-a8f0509c82b4047cf398b27ad61916fee788f77f.tar.gz
org.eclipse.tcf-a8f0509c82b4047cf398b27ad61916fee788f77f.tar.xz
org.eclipse.tcf-a8f0509c82b4047cf398b27ad61916fee788f77f.zip
Target Explorer: More findbugs fixes
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml9
1 files changed, 9 insertions, 0 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index 0193e04f0..1d9899b40 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -23,6 +23,15 @@
</Or>
</Match>
+ <!-- Ignore all inner class should be static violations -->
+ <Match>
+ <Or>
+ <Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
+ <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
+ <Bug pattern="SIC_INNER_SHOULD_BE_STATIC_NEEDS_THIS"/>
+ </Or>
+ </Match>
+
<!-- Ignore all ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD violations in bundle activators -->
<Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>

Back to the top