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 /build.xml | |
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 'build.xml')
-rw-r--r-- | build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1405,7 +1405,7 @@ under the License. </classpath> </taskdef> <findbugs home="${findbugs.home}" output="html" outputFile="build/findbugs.html" - includeFilter="src/resources/devtools/findbugs-filters.xml"> + excludeFilter="src/resources/devtools/findbugs-filters.xml"> <fileset dir="${dist.dir}"> <include name="poi-${version.id}-*.jar"/> <include name="poi-scratchpad-${version.id}-*.jar"/> |