Guest User

Untitled

a guest
Jun 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. @Override
  2. public void visitMethodInsn(
  3. final int opcode,
  4. final @InternalForm String owner,
  5. final @Identifier String name,
  6. final @MethodDescriptor String descriptor,
  7. final boolean isInterface) {
  8. if (api < Opcodes.ASM5) {
  9. super.visitMethodInsn(opcode, owner, name, descriptor, isInterface);
  10. return;
  11. }
  12. instructions.add(new MethodInsnNode(opcode, owner, name, descriptor, isInterface));
  13. }
Add Comment
Please, Sign In to add comment