Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-05-25 09:17:14 +0000
committerUwe Stieber2012-05-25 09:17:14 +0000
commitc43ff2700cbc527f99e29eefe83f4586a4c2258e (patch)
tree483a85c908377cb05776c68fc06de57bb7f88e85 /admin/findbugs-exclude.xml
parentcd822fb9e1041dbd02071a04b2b7963ac98be248 (diff)
downloadorg.eclipse.tcf-c43ff2700cbc527f99e29eefe83f4586a4c2258e.tar.gz
org.eclipse.tcf-c43ff2700cbc527f99e29eefe83f4586a4c2258e.tar.xz
org.eclipse.tcf-c43ff2700cbc527f99e29eefe83f4586a4c2258e.zip
Target Explorer: Fix more findbugs warnings
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index 492eb40a8..db67cf6a4 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -37,6 +37,11 @@
<Bug pattern="REC_CATCH_EXCEPTION"/>
</Match>
+ <!-- Ignore all STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE -->
+ <Match>
+ <Bug pattern="STCAL_INVOKE_ON_STATIC_DATE_FORMAT_INSTANCE"/>
+ </Match>
+
<!-- Ignore all EQ_DOESNT_OVERRIDE_EQUALS -->
<Match>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>
@@ -53,6 +58,12 @@
</Or>
</Match>
+ <!-- Ignore all RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE in hasString(String) methods -->
+ <Match>
+ <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
+ <Method name="hasString" params="java.lang.String" returns="boolean"/>
+ </Match>
+
<!-- Ignore all EI_EXPOSE_REP violations for IAdapterFactory#getAdapterList() -->
<Match>
<Bug pattern="EI_EXPOSE_REP"/>

Back to the top