Skip to content

Commit

Permalink
Merge 4c29b1b into 354d4fc
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaroclapp committed Jul 18, 2019
2 parents 354d4fc + 4c29b1b commit 2346b53
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -110,7 +110,7 @@ private static void annotateBytecode(
MethodReturnAnnotations nullableReturns)
throws IOException {
ClassReader cr = new ClassReader(is);
ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_FRAMES);
ClassWriter cw = new ClassWriter(0);
BytecodeAnnotator bytecodeAnnotator = new BytecodeAnnotator(cw, nonnullParams, nullableReturns);
cr.accept(bytecodeAnnotator, 0);
os.write(cw.toByteArray());
Expand Down

0 comments on commit 2346b53

Please sign in to comment.