aboutsummaryrefslogtreecommitdiffstats
path: root/src/resources/devtools
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2014-02-16 23:36:32 +0000
committerAndreas Beeker <kiwiwings@apache.org>2014-02-16 23:36:32 +0000
commitbc5912e74d75fe06af7435dc71fe559eaeaa3565 (patch)
treef97b3c3223fd85689d3a813ca6243236265066e4 /src/resources/devtools
parent220b2638308534f360fa3011ebe1727224989d58 (diff)
downloadpoi-bc5912e74d75fe06af7435dc71fe559eaeaa3565.tar.gz
poi-bc5912e74d75fe06af7435dc71fe559eaeaa3565.zip
FindBugs fix
- fixed "Equals method should not assume anything about the type of its argument" - see http://findbugs.sourceforge.net/bugDescriptions.html#BC_EQUALS_METHOD_SHOULD_WORK_FOR_ALL_OBJECTS git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568861 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/resources/devtools')
-rw-r--r--src/resources/devtools/findbugs-filters.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/devtools/findbugs-filters.xml b/src/resources/devtools/findbugs-filters.xml
index 9ec102bfd9..518557fa02 100644
--- a/src/resources/devtools/findbugs-filters.xml
+++ b/src/resources/devtools/findbugs-filters.xml
@@ -19,6 +19,6 @@
-->
<FindBugsFilter>
<Match>
- <Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE,MS_PKGPROTECT,MS_MUTABLE_ARRAY"/>
+ <Bug code="EI,EI2" pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE,MS_PKGPROTECT,MS_MUTABLE_ARRAY"/>
</Match>
</FindBugsFilter> \ No newline at end of file