src/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/Subroutine.java

Print this page

        

*** 78,92 **** List<JumpInsnNode> callers; private Subroutine() { } ! Subroutine( ! final LabelNode start, ! final int maxLocals, ! final JumpInsnNode caller) ! { this.start = start; this.access = new boolean[maxLocals]; this.callers = new ArrayList<JumpInsnNode>(); callers.add(caller); } --- 78,89 ---- List<JumpInsnNode> callers; private Subroutine() { } ! Subroutine(final LabelNode start, final int maxLocals, ! final JumpInsnNode caller) { this.start = start; this.access = new boolean[maxLocals]; this.callers = new ArrayList<JumpInsnNode>(); callers.add(caller); }