mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 05:10:11 +00:00
fix type descriptor
This commit is contained in:
parent
d6383b7d1d
commit
5eebfbc642
@ -84,7 +84,7 @@ public class J2IRConverter {
|
||||
if (methodNode.tryCatchBlocks != null) {
|
||||
for (TryCatchBlockNode tcb : methodNode.tryCatchBlocks) {
|
||||
target.traps.add(new Trap(getLabel(tcb.start), getLabel(tcb.end), new LabelStmt[]{getLabel(tcb.handler)},
|
||||
new String[]{tcb.type}));
|
||||
new String[]{tcb.type == null ? null : Type.getObjectType(tcb.type).getDescriptor()}));
|
||||
int handlerIdx = insnList.indexOf(tcb.handler);
|
||||
handlers.set(handlerIdx);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user