Author: bodewig
Date: Mon Oct 21 15:53:27 2013
New Revision: 1534247
URL: http://svn.apache.org/r1534247
Log:
7zOut#close may now throw IOException
Modified:
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/util/SevenZStreamFactory.java
Modified:
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/util/SevenZStreamFactory.java
URL:
http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/util/SevenZStreamFactory.java?rev=1534247&r1=1534246&r2=1534247&view=diff
==============================================================================
---
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/util/SevenZStreamFactory.java
(original)
+++
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/util/SevenZStreamFactory.java
Mon Oct 21 15:53:27 2013
@@ -112,7 +112,7 @@ public class SevenZStreamFactory impleme
zipFile = new SevenZOutputFile(file);
}
- public void close() {
+ public void close() throws IOException {
zipFile.close();
}