diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2014-02-13 23:34:11 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2014-02-13 23:34:11 +0000 |
commit | 334aaad728c7e526383f63b0a0f806d266e41880 (patch) | |
tree | 38ead875d46c7c13a18f4cd4520fbacfcec5574e /src/resources/devtools | |
parent | ad8ded4b1d4ae24eb5744633bf72ed7b6cfa50e1 (diff) | |
download | poi-334aaad728c7e526383f63b0a0f806d266e41880.tar.gz poi-334aaad728c7e526383f63b0a0f806d266e41880.zip |
FindBugs fix
- fixed "Field isn't final but should be"
- see http://findbugs.sourceforge.net/bugDescriptions.html#MS_SHOULD_BE_FINAL
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568145 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/resources/devtools')
-rw-r--r-- | src/resources/devtools/findbugs-filters.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/devtools/findbugs-filters.xml b/src/resources/devtools/findbugs-filters.xml index 4b47561d69..9ec102bfd9 100644 --- a/src/resources/devtools/findbugs-filters.xml +++ b/src/resources/devtools/findbugs-filters.xml @@ -18,7 +18,7 @@ ====================================================================
-->
<FindBugsFilter>
-<Match>
-<Not><Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE"/></Not>
-</Match>
+ <Match>
+ <Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE,MS_PKGPROTECT,MS_MUTABLE_ARRAY"/>
+ </Match>
</FindBugsFilter>
\ No newline at end of file |