16
16
*/
17
17
package com .googlecode .d2j .dex ;
18
18
19
- import org .objectweb .asm .AsmBridgeFix ;
19
+ import org .objectweb .asm .AsmBridge ;
20
20
import org .objectweb .asm .MethodVisitor ;
21
21
import org .objectweb .asm .Opcodes ;
22
22
import org .objectweb .asm .tree .MethodNode ;
@@ -33,7 +33,7 @@ public ExDex2Asm(DexExceptionHandler exceptionHandler) {
33
33
34
34
@ Override
35
35
public void convertCode (DexMethodNode methodNode , MethodVisitor mv , ClzCtx clzCtx ) {
36
- MethodVisitor mw = AsmBridgeFix .searchMethodWriter (mv );
36
+ MethodVisitor mw = AsmBridge .searchMethodWriter (mv );
37
37
MethodNode mn = new MethodNode (Opcodes .ASM5 , methodNode .access , methodNode .method .getName (),
38
38
methodNode .method .getDesc (), null , null );
39
39
try {
@@ -51,12 +51,12 @@ public void convertCode(DexMethodNode methodNode, MethodVisitor mv, ClzCtx clzCt
51
51
mn .accept (mv );
52
52
if (mw != null ) {
53
53
try {
54
- AsmBridgeFix .sizeOfMethodWriter (mw );
54
+ AsmBridge .sizeOfMethodWriter (mw );
55
55
} catch (Exception ex ) {
56
56
mn .instructions .clear ();
57
57
mn .tryCatchBlocks .clear ();
58
58
exceptionHandler .handleMethodTranslateException (methodNode .method , methodNode , mn , ex );
59
- AsmBridgeFix .replaceMethodWriter (mw , mn );
59
+ AsmBridge .replaceMethodWriter (mw , mn );
60
60
}
61
61
}
62
62
}
0 commit comments