Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorUwe Stieber2012-04-25 15:26:28 +0000
committerUwe Stieber2012-04-25 15:26:28 +0000
commit422c0633487a8bc5b3e27acaba1d1e99832df006 (patch)
tree90e0b683c24fe0d040631c1bb497416e70a3fe03 /admin
parent45c374773adf6196ad239a74944b529125e53e0b (diff)
downloadorg.eclipse.tcf-422c0633487a8bc5b3e27acaba1d1e99832df006.tar.gz
org.eclipse.tcf-422c0633487a8bc5b3e27acaba1d1e99832df006.tar.xz
org.eclipse.tcf-422c0633487a8bc5b3e27acaba1d1e99832df006.zip
Target Explorer: Fix FindBugs warnings
Diffstat (limited to 'admin')
-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 63c70c87a..509fddd77 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -23,4 +23,13 @@
<Match>
<Bug category="I18N"/>
</Match>
+
+ <!-- Ignore LI_LAZY_INIT_UPDATE_STATIC in Model.java -->
+ <Match>
+ <Bug pattern="LI_LAZY_INIT_UPDATE_STATIC"/>
+ <And>
+ <Class name="org.eclipse.tcf.te.tcf.locator.model.Model"/>
+ <Method name="initialize"/>
+ </And>
+ </Match>
</FindBugsFilter>

Back to the top