Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-06-02 07:57:05 +0000
committerUwe Stieber2012-06-02 07:58:02 +0000
commitf5b16c432e34664f2a39e685d2bd3e519cf17904 (patch)
tree55442ca3f8d460ac5db5534d1baaf83da4e7cb99 /admin/findbugs-exclude.xml
parent270fe1988ce84e3decffc9de277924fba01dc6d4 (diff)
downloadorg.eclipse.tcf-f5b16c432e34664f2a39e685d2bd3e519cf17904.tar.gz
org.eclipse.tcf-f5b16c432e34664f2a39e685d2bd3e519cf17904.tar.xz
org.eclipse.tcf-f5b16c432e34664f2a39e685d2bd3e519cf17904.zip
Target Explorer: Fix FindBugs warnings
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml36
1 files changed, 23 insertions, 13 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index f40658039..3e042aa0a 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -63,17 +63,20 @@
</Or>
</Match>
- <!-- Ignore all RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE in hasString(String) methods -->
+ <!-- Ignore RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE -->
<Match>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
- <Method name="hasString" params="java.lang.String" returns="boolean"/>
- </Match>
- <Match>
- <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
- <And>
- <Class name="org.eclipse.tcf.te.tcf.terminals.core.launcher.TerminalsLauncher"/>
- <Method name="executeLaunch"/>
- </And>
+ <Or>
+ <Method name="hasString" params="java.lang.String" returns="boolean"/>
+ <And>
+ <Class name="org.eclipse.tcf.te.tcf.terminals.core.launcher.TerminalsLauncher"/>
+ <Method name="executeLaunch"/>
+ </And>
+ <And>
+ <Class name="org.eclipse.tcf.te.tcf.processes.core.launcher.ProcessLauncher"/>
+ <Method name="executeLaunch"/>
+ </And>
+ </Or>
</Match>
<!-- Ignore EI_EXPOSE_REP -->
@@ -93,6 +96,7 @@
<Class name="org.eclipse.tcf.te.ui.views.handler.UpdateActiveExtensionsOperation"/>
<Class name="org.eclipse.tcf.te.ui.views.handler.UpdateActiveFiltersOperation"/>
<Class name="~org\.eclipse\.tcf\.te\.tcf\.terminals\.core\.launcher\.TerminalsStreamsListener.*"/>
+ <Class name="~org\.eclipse\.tcf\.te\.tcf\.processes\.core\.launcher\.ProcessStreamsListener.*"/>
<Class name="org.eclipse.tcf.te.tcf.filesystem.core.internal.utils.FileState"/>
<Package name="~org\.eclipse\.tcf\.te\.tcf\.filesystem\.core\.internal\.operations"/>
</Or>
@@ -144,10 +148,16 @@
<!-- Ignore UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR -->
<Match>
<Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
- <And>
- <Class name="org.eclipse.tcf.te.ui.internal.utils.BreadthFirstSearcher"/>
- <Method name="searchNext"/>
- </And>
+ <Or>
+ <And>
+ <Class name="org.eclipse.tcf.te.ui.internal.utils.BreadthFirstSearcher"/>
+ <Method name="searchNext"/>
+ </And>
+ <And>
+ <Class name="~org\.eclipse\.tcf\.te\.tcf\.processes\.core\.launcher\.ProcessLauncher.*"/>
+ <Method name="run"/>
+ </And>
+ </Or>
</Match>
<!-- Filters for org.eclipse.tcf bundle -->

Back to the top