mirror of
https://github.com/revanced/Apktool.git
synced 2025-02-01 14:47:56 +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) {
|
} 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) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user