Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-05-25 11:59:53 +0000
committerUwe Stieber2012-05-25 11:59:53 +0000
commit32587a103ef0d6481ec4079986a39f2b93735595 (patch)
treec8a14e2f83746b4874c1ffadc9c9a30400b271bc
parent274931fab9aab122ea534f9760179522c2aa48f6 (diff)
downloadorg.eclipse.tcf-32587a103ef0d6481ec4079986a39f2b93735595.tar.gz
org.eclipse.tcf-32587a103ef0d6481ec4079986a39f2b93735595.tar.xz
org.eclipse.tcf-32587a103ef0d6481ec4079986a39f2b93735595.zip
Target Explorer: Fix findbugs-exclude.xml
-rw-r--r--admin/findbugs-exclude.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index 43cbb801f..3e44dbfe9 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -6,10 +6,10 @@
<!-- Ignore all NM_SAME_SIMPLE_NAME_AS_SUPERCLASS or NM_SAME_SIMPLE_NAME_AS_INTERFACE violations -->
<Match>
- <Or>
- <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
- <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
- <Or>
+ <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
+ </Match>
+ <Match>
+ <Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE"/>
</Match>
<!-- Ignore all SF_SWITCH_NO_DEFAULT violations -->

Back to the top