[skip] use IOUtils.closeQuietly()

This commit is contained in:
Connor Tumbleson 2015-04-16 08:20:18 -05:00
parent 3cdd8243c7
commit becaf754a9

View File

@ -704,18 +704,8 @@ final public class AndrolibResources {
} catch (IOException ex) { } catch (IOException ex) {
throw new AndrolibException(ex); throw new AndrolibException(ex);
} finally { } finally {
if (in != null) { IOUtils.closeQuietly(in);
try { IOUtils.closeQuietly(out);
in.close();
} catch (IOException ex) {
}
}
if (out != null) {
try {
out.close();
} catch (IOException ex) {
}
}
} }
} }