aboutsummaryrefslogtreecommitdiffstats
path: root/src/resources/devtools
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2016-06-13 05:06:47 +0000
committerJaven O'Neal <onealj@apache.org>2016-06-13 05:06:47 +0000
commit288b0b46b9846a9e3a20d25e6537b00137183387 (patch)
tree41688e342fd5c277f34bd9e8e0913a70ad3594ae /src/resources/devtools
parenta9c0342b1d51977d656dfa469434b670ccdfeeb9 (diff)
downloadpoi-288b0b46b9846a9e3a20d25e6537b00137183387.tar.gz
poi-288b0b46b9846a9e3a20d25e6537b00137183387.zip
findbugs: fix URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748085 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/resources/devtools')
-rw-r--r--src/resources/devtools/findbugs-filters.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/resources/devtools/findbugs-filters.xml b/src/resources/devtools/findbugs-filters.xml
index b2152bcf48..318db2b114 100644
--- a/src/resources/devtools/findbugs-filters.xml
+++ b/src/resources/devtools/findbugs-filters.xml
@@ -64,6 +64,16 @@
<Bug pattern="URF_UNREAD_FIELD" />
<Field name="count2" />
</Match>
+ <Match>
+ <Class name="org.apache.poi.xwpf.usermodel.XWPFLatentStyles"/>
+ <Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD" />
+ <Field name="styles" />
+ </Match>
+ <Match>
+ <Class name="org.apache.poi.hslf.blip.Metafile"/>
+ <Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD" />
+ <Field name="compression" />
+ </Match>
<!-- invalid performance issues - e.g. see #57840 -->