Skip to content

Commit

Permalink
fix no linenumber problem
Browse files Browse the repository at this point in the history
  • Loading branch information
hengyunabc committed Nov 27, 2020
1 parent 6c8bb25 commit 81b543a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -674,7 +674,7 @@ public void inline(String owner, MethodNode toInlineMethodNode) {
&& methodInsnNode.desc.equals(toInlineMethodNode.desc)) {
// 要copy一份,否则inline多次会出问题
MethodNode tmpToInlineMethodNode = AsmUtils.copy(toInlineMethodNode);
tmpToInlineMethodNode = AsmUtils.removeLineNumbers(tmpToInlineMethodNode);
// tmpToInlineMethodNode = AsmUtils.removeLineNumbers(tmpToInlineMethodNode);

LabelNode end = new LabelNode();
this.methodNode.instructions.insert(methodInsnNode, end);
Expand Down

0 comments on commit 81b543a

Please sign in to comment.