< prev index next >

src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/LocalVariablesSorter.java

Print this page
rev 47452 : imported patch jdk-new-asmv6.patch

@@ -118,11 +118,11 @@
      * @throws IllegalStateException
      *             If a subclass calls this constructor.
      */
     public LocalVariablesSorter(final int access, final String desc,
             final MethodVisitor mv) {
-        this(Opcodes.ASM5, access, desc, mv);
+        this(Opcodes.ASM6, access, desc, mv);
         if (getClass() != LocalVariablesSorter.class) {
             throw new IllegalStateException();
         }
     }
 

@@ -129,11 +129,11 @@
     /**
      * Creates a new {@link LocalVariablesSorter}.
      *
      * @param api
      *            the ASM API version implemented by this visitor. Must be one
-     *            of {@link Opcodes#ASM4} or {@link Opcodes#ASM5}.
+     *            of {@link Opcodes#ASM4}, {@link Opcodes#ASM5} or {@link Opcodes#ASM6}.
      * @param access
      *            access flags of the adapted method.
      * @param desc
      *            the method's descriptor (see {@link Type Type}).
      * @param mv
< prev index next >