Author: bodewig
Date: Tue Oct 15 17:13:08 2013
New Revision: 1532443

URL: http://svn.apache.org/r1532443
Log:
SevenZFile#close throws now

Modified:
    
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/resources/SevenZResource.java

Modified: 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/resources/SevenZResource.java
URL: 
http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/resources/SevenZResource.java?rev=1532443&r1=1532442&r2=1532443&view=diff
==============================================================================
--- 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/resources/SevenZResource.java
 (original)
+++ 
ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/resources/SevenZResource.java
 Tue Oct 15 17:13:08 2013
@@ -168,7 +168,11 @@ public final class SevenZResource extend
             throw new BuildException(e);
         } finally {
             if (z != null) {
-                z.close();
+                try {
+                    z.close();
+                } catch (IOException ex) {
+                    // swallow
+                }
             }
         }
     }


Reply via email to