Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index a9e81ec49..1702bf1d8 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -228,7 +228,7 @@
</Or>
</Match>
- <!-- Ignore BC_VACUOUS_INSTANCEOF -->
+ <!-- Ignore RV_RETURN_VALUE_IGNORED_BAD_PRACTICE -->
<Match>
<Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE"/>
<Or>
@@ -236,6 +236,12 @@
<Class name="~org\.eclipse\.tcf\.te\.tcf\.filesystem\.ui\.internal\.handlers\.OpenFileHandler.*"/>
</Or>
</Match>
+
+ <!-- Ignore NP_LOAD_OF_KNOWN_NULL_VALUE -->
+ <Match>
+ <Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
+ <Class name="~org\.eclipse\.tcf\.te\.tcf\.core\.internal\.ChannelManager.*"/>
+ </Match>
<!-- Filters for org.eclipse.tcf bundle -->
<Match>

Back to the top