Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-23 17:19:36 +0000
committerUwe Stieber2012-02-23 17:19:36 +0000
commit7066ea985bf14557b56efbed8219eb7a530e6efd (patch)
tree8ca226a7b130dab34d648624aa1dcc7dee6647dd /findbugs-exclude.xml
parentba119c0a8a91f652524647e4106fb2fa9b961c1a (diff)
downloadorg.eclipse.tcf-7066ea985bf14557b56efbed8219eb7a530e6efd.tar.gz
org.eclipse.tcf-7066ea985bf14557b56efbed8219eb7a530e6efd.tar.xz
org.eclipse.tcf-7066ea985bf14557b56efbed8219eb7a530e6efd.zip
Target Explorer: Adjust findbugs exclude filter and undo PreferencePage.java renaming
Diffstat (limited to 'findbugs-exclude.xml')
-rw-r--r--findbugs-exclude.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/findbugs-exclude.xml b/findbugs-exclude.xml
index 2267e66c0..0fb9168bf 100644
--- a/findbugs-exclude.xml
+++ b/findbugs-exclude.xml
@@ -7,4 +7,14 @@
<Method name="stop" params="org.osgi.framework.BundleContext" returns="void"/>
</Or>
</Match>
+
+ <!-- Ignore all NM_SAME_SIMPLE_NAME_AS_SUPERCLASS for PreferencePage/PropertyTester -->
+ <Match>
+ <Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
+ <Or>
+ <Class name="~.*\.PreferencePage"/>
+ <Class name="~.*\.PropertyTester"/>
+ </Or>
+ </Match>
+
</FindBugsFilter>

Back to the top