--- old/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/GeneratorAdapter.java Fri Oct 27 09:24:03 2017 +++ new/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/GeneratorAdapter.java Fri Oct 27 09:24:02 2017 @@ -289,7 +289,7 @@ */ public GeneratorAdapter(final MethodVisitor mv, final int access, final String name, final String desc) { - this(Opcodes.ASM5, mv, access, name, desc); + this(Opcodes.ASM6, mv, access, name, desc); if (getClass() != GeneratorAdapter.class) { throw new IllegalStateException(); } @@ -300,7 +300,7 @@ * * @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 mv * the method visitor to which this adapter delegates calls. * @param access