Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-06-01 10:00:25 +0000
committerUwe Stieber2012-06-01 10:00:25 +0000
commite15eabb2ecf9897b8b53e707cfc03020635bc2ca (patch)
tree7cbb714534ceaacf8cc90a0c3ca34b5a21eb91da /admin/findbugs-exclude.xml
parent1c293abca03c529c97462af58b7bc8b438f43561 (diff)
downloadorg.eclipse.tcf-e15eabb2ecf9897b8b53e707cfc03020635bc2ca.tar.gz
org.eclipse.tcf-e15eabb2ecf9897b8b53e707cfc03020635bc2ca.tar.xz
org.eclipse.tcf-e15eabb2ecf9897b8b53e707cfc03020635bc2ca.zip
Target Explorer: Fix FindBugs warnings
Diffstat (limited to 'admin/findbugs-exclude.xml')
-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 e26eec892..ef0f856b6 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -99,10 +99,13 @@
</And>
</Match>
- <!-- Ignore URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD in AbstractFileTransferSection -->
+ <!-- Ignore URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD -->
<Match>
<Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"/>
- <Class name="org.eclipse.tcf.te.launch.ui.tabs.filetransfers.AbstractFileTransferSection"/>
+ <Or>
+ <Class name="org.eclipse.tcf.te.launch.ui.tabs.filetransfers.AbstractFileTransferSection"/>
+ <Class name="org.eclipse.tcf.te.ui.tables.properties.NodePropertiesTableTableNode"/>
+ </Or>
</Match>
<!-- Ignore UW_UNCOND_WAIT in InputStreamMonitor -->

Back to the top