mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-22 20:59:59 +00:00
Workaround for #25
This commit is contained in:
parent
cc9861bbd4
commit
9510b74dca
@ -48,7 +48,13 @@ public class ExDex2Asm extends Dex2Asm {
|
||||
}
|
||||
}
|
||||
// code convert ok, copy to MethodWriter and check for Size
|
||||
mn.accept(mv);
|
||||
try {
|
||||
mn.accept(mv);
|
||||
} catch (Exception e) {
|
||||
System.out.println("Cannot convert " + clzCtx.classDescriptor);
|
||||
if (exceptionHandler != null)
|
||||
exceptionHandler.handleMethodTranslateException(methodNode.method, methodNode, mn, e);
|
||||
}
|
||||
if (mw != null) {
|
||||
try {
|
||||
AsmBridge.sizeOfMethodWriter(mw);
|
||||
|
Loading…
Reference in New Issue
Block a user