We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 107371a commit 1c268ecCopy full SHA for 1c268ec
jooby/src/main/java/io/jooby/internal/asm/MethodFinder.java
@@ -23,7 +23,7 @@ public class MethodFinder extends ClassVisitor {
23
public ASMifier printer;
24
25
public MethodFinder(Method method, boolean debug) {
26
- super(Opcodes.ASM6);
+ super(Opcodes.ASM7);
27
this.descriptor = Type.getMethodDescriptor(method);
28
this.name = method.getName();
29
this.debug = debug;
jooby/src/main/java/io/jooby/internal/mvc/MvcMetadata.java
@@ -47,7 +47,7 @@ public void destroy() {
47
}
48
49
private static ClassVisitor visitor(final Map<String, MvcMethod> md) {
50
- return new ClassVisitor(Opcodes.ASM5) {
+ return new ClassVisitor(Opcodes.ASM7) {
51
52
private String classname;
53
0 commit comments