mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-11 15:09:24 +01:00
[skip] use IOUtils.closeQuietly()
This commit is contained in:
parent
3cdd8243c7
commit
becaf754a9
@ -704,18 +704,8 @@ final public class AndrolibResources {
|
||||
} catch (IOException ex) {
|
||||
throw new AndrolibException(ex);
|
||||
} finally {
|
||||
if (in != null) {
|
||||
try {
|
||||
in.close();
|
||||
} catch (IOException ex) {
|
||||
}
|
||||
}
|
||||
if (out != null) {
|
||||
try {
|
||||
out.close();
|
||||
} catch (IOException ex) {
|
||||
}
|
||||
}
|
||||
IOUtils.closeQuietly(in);
|
||||
IOUtils.closeQuietly(out);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user