Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorEugene Tarassov2013-10-29 09:24:36 +0000
committerEugene Tarassov2013-10-29 09:24:36 +0000
commit9b2dc08510d809ca21c5a6e58f4f4ddb7ff55689 (patch)
treea3214d01390b8afa24427d415e5af00b3a5b61c1 /admin
parent1c06acf9b5d44a63245d3636609d7d04619960a5 (diff)
downloadorg.eclipse.tcf-9b2dc08510d809ca21c5a6e58f4f4ddb7ff55689.tar.gz
org.eclipse.tcf-9b2dc08510d809ca21c5a6e58f4f4ddb7ff55689.tar.xz
org.eclipse.tcf-9b2dc08510d809ca21c5a6e58f4f4ddb7ff55689.zip
TCF Debugger: added exclude statements for bogus FindBugs warnings
Diffstat (limited to 'admin')
-rw-r--r--admin/findbugs-exclude.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index a5e796ed5..a9e81ec49 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -282,11 +282,39 @@
<Class name="org.eclipse.tcf.internal.debug.model.TCFLaunch"/>
<Method name="getListeners"/>
</Match>
+ <Match>
+ <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
+ <Class name="org.eclipse.tcf.internal.debug.launch.TCFLocalAgent"/>
+ <Method name="runLocalAgent"/>
+ </Match>
+ <Match>
+ <Bug pattern="DM_EXIT"/>
+ <Class name="~org\.eclipse\.tcf\.internal\.debug\.tests\.Main.*"/>
+ </Match>
<!-- Filters for org.eclipse.tcf.debug.ui bundle -->
<Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
<Class name="org.eclipse.tcf.internal.debug.ui.model.TCFNodeSymbol"/>
</Match>
+ <Match>
+ <Bug pattern="LI_LAZY_INIT_STATIC"/>
+ <Class name="org.eclipse.tcf.internal.debug.ui.Activator"/>
+ </Match>
+ <Match>
+ <Bug pattern="NP_BOOLEAN_RETURN_NULL"/>
+ <Class name="org.eclipse.tcf.internal.debug.ui.model.TCFChildrenStackTrace"/>
+ <Method name="checkHasChildren"/>
+ </Match>
+ <Match>
+ <Bug pattern="LI_LAZY_INIT_UPDATE_STATIC"/>
+ <Class name="org.eclipse.tcf.internal.debug.ui.model.TCFModelFonts"/>
+ <Method name="getNormalFontData"/>
+ </Match>
+ <Match>
+ <Bug pattern="NP_BOOLEAN_RETURN_NULL"/>
+ <Class name="org.eclipse.tcf.internal.debug.ui.model.TCFNodeExpression"/>
+ <Method name="usePrevValue"/>
+ </Match>
</FindBugsFilter>

Back to the top