Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2014-07-22 07:47:14 +0000
committerUwe Stieber2014-07-22 07:47:14 +0000
commit20db449f656e3443ca75eac0fc702a24a528d578 (patch)
treefe4ee08976f73cb0186ef93479ad00ec68a99d16 /admin/findbugs-exclude.xml
parenta3ce937fbd1eef2bd7b01418c36f819524815aa5 (diff)
downloadorg.eclipse.tcf-20db449f656e3443ca75eac0fc702a24a528d578.tar.gz
org.eclipse.tcf-20db449f656e3443ca75eac0fc702a24a528d578.tar.xz
org.eclipse.tcf-20db449f656e3443ca75eac0fc702a24a528d578.zip
Target Explorer: Fix findbugs warnings
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index 5dd503c6f..f8f4bc5f5 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -25,9 +25,18 @@
<!-- Ignore NM_CLASS_NOT_EXCEPTION -->
<Match>
<Bug pattern="NM_CLASS_NOT_EXCEPTION"/>
- <Class name="org.eclipse.tcf.te.tcf.core.va.ValueAddException"/>
+ <Or>
+ <Class name="org.eclipse.tcf.te.tcf.core.va.ValueAddException"/>
+ <Class name="org.eclipse.tcf.te.tcf.core.channelmanager.OpenChannelException"/>
+ </Or>
</Match>
+ <!-- Ignore ES_COMPARING_PARAMETER_STRING_WITH_EQ -->
+ <Match>
+ <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ"/>
+ <Class name="org.eclipse.tcf.te.ui.terminals.manager.ConsoleManager"/>
+ </Match>
+
<!-- Ignore all SF_SWITCH_NO_DEFAULT violations -->
<Match>
<Bug pattern="SF_SWITCH_NO_DEFAULT"/>

Back to the top