Commit ed0bfe01 authored by Evan W. Patton's avatar Evan W. Patton

Split IOUtils.closeQuietly into two calls

The version called wasn't introduced until 2.5, we use 2.0.1

Change-Id: I6cf1273ead751c29102f7e9bca07767c3b8241b8
parent d1d8e3bc
......@@ -250,7 +250,8 @@ public class AARLibrary {
input = zip.getInputStream(entry);
IOUtils.copy(input, output);
} finally {
IOUtils.closeQuietly(input, output);
IOUtils.closeQuietly(input);
IOUtils.closeQuietly(output);
}
catalog(target);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment