Skip to content

Commit 87743e1

Browse files
author
T1xelek
authored
Fixed asFieldInsn returning JumpInsnNode (#101)
1 parent 690cff1 commit 87743e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deobfuscator-api/src/main/java/org/objectweb/asm/tree/AbstractInsnNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,8 +465,8 @@ public MethodInsnNode asMethodInsn() {
465465
return (MethodInsnNode) this;
466466
}
467467

468-
public JumpInsnNode asFieldInsn() {
469-
return (JumpInsnNode) this;
468+
public FieldInsnNode asFieldInsn() {
469+
return (FieldInsnNode) this;
470470
}
471471

472472
public InvokeDynamicInsnNode asInvokeDynamicInsn() {

0 commit comments

Comments
 (0)