aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jar-infer/jar-infer-lib/src/main/java/com/uber/nullaway/jarinfer/BytecodeAnnotator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jar-infer/jar-infer-lib/src/main/java/com/uber/nullaway/jarinfer/BytecodeAnnotator.java b/jar-infer/jar-infer-lib/src/main/java/com/uber/nullaway/jarinfer/BytecodeAnnotator.java
index 73c2e1d..6b226fa 100644
--- a/jar-infer/jar-infer-lib/src/main/java/com/uber/nullaway/jarinfer/BytecodeAnnotator.java
+++ b/jar-infer/jar-infer-lib/src/main/java/com/uber/nullaway/jarinfer/BytecodeAnnotator.java
@@ -151,7 +151,7 @@ public final class BytecodeAnnotator {
throws IOException {
ClassReader cr = new ClassReader(is);
ClassWriter cw = new ClassWriter(0);
- ClassNode cn = new ClassNode(Opcodes.ASM7);
+ ClassNode cn = new ClassNode(Opcodes.ASM9);
cr.accept(cn, 0);
String className = cn.name.replace('/', '.');