mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +01:00
chore: updated insnnodes to match
This commit is contained in:
parent
1295516232
commit
8c11b0b4d8
2 changed files with 6 additions and 6 deletions
|
@ -19,9 +19,9 @@ public class FieldProxyInsnNode extends FieldInsnNode {
|
|||
public FieldProxyInsnNode(int opcode, FieldProxy f) {
|
||||
super(
|
||||
opcode,
|
||||
f.getParent().replace('.', '/'),
|
||||
f.getName(),
|
||||
f.getDescriptor()
|
||||
f.parent.replace('.', '/'),
|
||||
f.name,
|
||||
f.type.getDescriptor()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,9 +20,9 @@ public class MethodProxyInsnNode extends MethodInsnNode {
|
|||
public MethodProxyInsnNode(int opcode, MethodProxy m) {
|
||||
super(
|
||||
opcode,
|
||||
m.getParent().replace('.', '/'),
|
||||
m.getName(),
|
||||
m.getDescriptor()
|
||||
m.parent.replace('.', '/'),
|
||||
m.name,
|
||||
m.type.getDescriptor()
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue