diff --git a/src/main/java/lanchon/multidexlib2/RawDexIO.java b/src/main/java/lanchon/multidexlib2/RawDexIO.java index a6b2c25..5daa470 100644 --- a/src/main/java/lanchon/multidexlib2/RawDexIO.java +++ b/src/main/java/lanchon/multidexlib2/RawDexIO.java @@ -55,7 +55,7 @@ public class RawDexIO { 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. DexUtil.verifyDexHeader(buf, offset); return new DexBackedDexFile(opcodes, buf, offset);