Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
Diffstat (limited to 'admin')
-rw-r--r--admin/findbugs-exclude.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index db67cf6a4..43cbb801f 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -4,9 +4,12 @@
<Bug category="I18N"/>
</Match>
- <!-- Ignore all NM_SAME_SIMPLE_NAME_AS_SUPERCLASS violations -->
+ <!-- Ignore all NM_SAME_SIMPLE_NAME_AS_SUPERCLASS or NM_SAME_SIMPLE_NAME_AS_INTERFACE violations -->
<Match>
- <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
+ <Or>
+ <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
+ <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
+ <Or>
</Match>
<!-- Ignore all SF_SWITCH_NO_DEFAULT violations -->

Back to the top