Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorUwe Stieber2012-06-01 14:48:11 +0000
committerUwe Stieber2012-06-01 14:48:11 +0000
commitbb31a5919ed3d90b7d0017d8427b7ee4b61ae26c (patch)
tree95c0514f232e43ab52ae7042c9e51362c0914816 /admin
parent0a7fc28da4ba46ca5d62660c7a9bd31c75c1f068 (diff)
downloadorg.eclipse.tcf-bb31a5919ed3d90b7d0017d8427b7ee4b61ae26c.tar.gz
org.eclipse.tcf-bb31a5919ed3d90b7d0017d8427b7ee4b61ae26c.tar.xz
org.eclipse.tcf-bb31a5919ed3d90b7d0017d8427b7ee4b61ae26c.zip
Target Explorer: Fix FindBugs warnings
Diffstat (limited to 'admin')
-rw-r--r--admin/findbugs-exclude.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index b4db52592..9d487d414 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -59,6 +59,7 @@
<Method name="stop" params="org.osgi.framework.BundleContext" returns="void"/>
<Class name="~.*\.Activator"/>
<Class name="org.eclipse.tcf.te.runtime.properties.PropertiesContainer"/>
+ <Class name="org.eclipse.tcf.te.ui.internal.utils.AbstractSearcher"/>
</Or>
</Match>
@@ -81,7 +82,7 @@
<Or>
<Method name="getAdapterList"/>
<Class name="org.eclipse.tcf.te.tcf.filesystem.core.internal.utils.FileState"/>
- <Package name="~org\.eclipse\.tcf\.te\.tcf\.filesystem\.core\.internal\.operations\..*"/>
+ <Package name="~org\.eclipse\.tcf\.te\.tcf\.filesystem\.core\.internal\.operations"/>
</Or>
</Match>
@@ -92,6 +93,8 @@
<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.filesystem.core.internal.utils.FileState"/>
+ <Package name="~org\.eclipse\.tcf\.te\.tcf\.filesystem\.core\.internal\.operations"/>
</Or>
</Match>
@@ -123,7 +126,7 @@
<!-- Ignore BC_UNCONFIRMED_CAST -->
<Match>
<Bug pattern="BC_UNCONFIRMED_CAST"/>
- <Package name="~org\.eclipse\.tcf\.te\.ui\.trees\..*"/>
+ <Package name="~org\.eclipse\.tcf\.te\.ui\.trees"/>
</Match>
<!-- Ignore DMI_HARDCODED_ABSOLUTE_FILENAME in Host -->
@@ -138,6 +141,15 @@
<Class name="org.eclipse.tcf.te.runtime.processes.ProcessOutputReaderThread"/>
</Match>
+ <!-- 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>
+ </Match>
+
<!-- Filters for org.eclipse.tcf bundle -->
<Match>
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>

Back to the top