mirror of
https://github.com/revanced/multidexlib2.git
synced 2025-04-30 06:34:31 +02:00
Remove redundant throws clause
This commit is contained in:
parent
4fe6ead964
commit
58fa3f477f
@ -55,7 +55,7 @@ public class RawDexIO {
|
|||||||
return readRawDexFile(buf, 0, opcodes);
|
return readRawDexFile(buf, 0, opcodes);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static DexBackedDexFile readRawDexFile(byte[] buf, int offset, Opcodes opcodes) throws IOException {
|
public static DexBackedDexFile readRawDexFile(byte[] buf, int offset, Opcodes opcodes) {
|
||||||
// This method now relies on the automatic dex version handling implemented in dexlib2 since version 2.2.4.
|
// This method now relies on the automatic dex version handling implemented in dexlib2 since version 2.2.4.
|
||||||
DexUtil.verifyDexHeader(buf, offset);
|
DexUtil.verifyDexHeader(buf, offset);
|
||||||
return new DexBackedDexFile(opcodes, buf, offset);
|
return new DexBackedDexFile(opcodes, buf, offset);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user