diff options
author | Dominik Stadler <centic@apache.org> | 2016-03-12 11:37:12 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2016-03-12 11:37:12 +0000 |
commit | 6d92ee86ff29c8987161700c7d9248df19e33d97 (patch) | |
tree | 76738e570677b43a6044055fa98612fe8925edef /build.xml | |
parent | eab3e748b3e0fde4c1ec61d5d7d1a6df68f2c82a (diff) | |
download | poi-6d92ee86ff29c8987161700c7d9248df19e33d97.tar.gz poi-6d92ee86ff29c8987161700c7d9248df19e33d97.zip |
Findbugs fixes
OldExcelExtractor could leak file handles in case of exceptions
Free file handles in POIFSDump, add unit-test for POIFSDump
Add a Findbugs exclude and adjust findbugs-ant slightly
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1734689 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1803,15 +1803,15 @@ under the License. src="http://prdownloads.sourceforge.net/findbugs/findbugs-noUpdateChecks-2.0.3.zip?download" dest="${main.lib}/findbugs-noUpdateChecks-2.0.3.zip"/> + <property name="findbugs.home" value="build/findbugs" /> <unzip src="${main.lib}/findbugs-noUpdateChecks-2.0.3.zip" - dest="build/findbugs/lib"> + dest="${findbugs.home}/lib"> <patternset> <include name="findbugs-2.0.3/lib/**"/> </patternset> <mapper type="flatten"/> </unzip> - <property name="findbugs.home" value="build/findbugs" /> <taskdef name="findbugs" classname="edu.umd.cs.findbugs.anttask.FindBugsTask"> <classpath> <fileset dir="${findbugs.home}/lib"> |