Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public AbstractInsnNode nextPattern(int... opcodes) {
  2. for(int k = 0; k < opcodes.length; k++, idx++) {
  3. if(idx > instructions.length - 1) return null;
  4. if(instructions[idx] != opcodes[k]) return null;
  5. }
  6. return instructions[idx];
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement