Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index de8fc5cee..0662af4df 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -134,6 +134,21 @@
<Bug pattern="BC_UNCONFIRMED_CAST"/>
<Package name="~org\.eclipse\.tcf\.te\.ui\.trees"/>
</Match>
+
+ <!-- Ignore BC_UNCONFIRMED_CAST_OF_RETURN_VALUE -->
+ <Match>
+ <Bug pattern="BC_UNCONFIRMED_CAST_OF_RETURN_VALUE"/>
+ <Or>
+ <Class name="org.eclipse.tcf.te.launch.ui.tabs.launchcontext.AbstractContextSelectorControl"/>
+ <Class name="org.eclipse.tcf.te.runtime.stepper.extensions.manager.StepGroupExtensionPointManager"/>
+ <Class name="org.eclipse.tcf.te.tcf.core.util.ExceptionUtils"/>
+ </Or>
+ </Match>
+
+ <!-- Ignore RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE -->
+ <Match>
+ <Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE"/>
+ </Match>
<!-- Ignore DMI_HARDCODED_ABSOLUTE_FILENAME in Host -->
<Match>
@@ -167,6 +182,15 @@
<Bug pattern="FE_FLOATING_POINT_EQUALITY"/>
<Class name="org.eclipse.tcf.te.runtime.properties.PropertiesContainer"/>
</Match>
+
+ <!-- Ignore IS2_INCONSISTENT_SYNC -->
+ <Match>
+ <Bug pattern="IS2_INCONSISTENT_SYNC"/>
+ <Or>
+ <Class name="org.eclipse.tcf.te.core.async.AsyncCallbackCollector"/>
+ <Class name="org.eclipse.tcf.te.tcf.filesystem.core.internal.utils.FileState"/>
+ </Or>
+ </Match>
<!-- Filters for org.eclipse.tcf bundle -->
<Match>

Back to the top