dev-java/java-dep-check: fixed opcode version in the java file to be the same as the asm dep version

Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2023-03-20 08:26:16 +01:00
parent aee65fdfa0
commit 5fd9be605a
2 changed files with 1 additions and 1 deletions

View File

@@ -73,7 +73,7 @@ public final class Main extends ClassVisitor {
* Empty Constructor, sets ASM op code version
*/
public Main() {
super(Opcodes.ASM5);
super(Opcodes.ASM9);
}
/**