You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2013/10/21 15:00:52 UTC

svn commit: r1534140 - /ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Un7z.java

Author: bodewig
Date: Mon Oct 21 13:00:52 2013
New Revision: 1534140

URL: http://svn.apache.org/r1534140
Log:
why oh why doesn't javac find all issues in one go?

Modified:
    ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Un7z.java

Modified: ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Un7z.java
URL: http://svn.apache.org/viewvc/ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Un7z.java?rev=1534140&r1=1534139&r2=1534140&view=diff
==============================================================================
--- ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Un7z.java (original)
+++ ant/antlibs/compress/trunk/src/main/org/apache/ant/compress/taskdefs/Un7z.java Mon Oct 21 13:00:52 2013
@@ -95,7 +95,11 @@ public class Un7z extends ExpandBase {
                 ioe);
         } finally {
             if (outer != null) {
-                outer.close();
+                try {
+                    outer.close();
+                } catch (IOException ex) {
+                    // swallow
+                }
             }
         }
     }