Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Marc R. Hoffmann <hoffmann@mountainminds.com>
  • Loading branch information
Godin and marchof committed May 4, 2024
1 parent ebce133 commit 5921431
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void should_filter() {

m.visitVarInsn(ALOAD, 1);
range1.fromInclusive = m.instructions.getLast();
m.visitLdcInsn(new Integer(-974630231));
m.visitLdcInsn(Integer.valueOf(-974630231));
m.visitMethodInsn(INVOKEINTERFACE, "androidx/compose/runtime/Composer",
"startRestartGroup", "(I)Landroidx/compose/runtime/Composer;",
true);
Expand Down Expand Up @@ -141,7 +141,7 @@ public void should_filter() {
Label label7 = new Label();
m.visitJumpInsn(IFEQ, label7);
range3.fromInclusive = m.instructions.getLast();
m.visitLdcInsn(new Integer(-974630231));
m.visitLdcInsn(Integer.valueOf(-974630231));
m.visitVarInsn(ILOAD, 3);
m.visitInsn(ICONST_M1);
m.visitLdcInsn("org.example.example (Example.kt:19)");
Expand Down

0 comments on commit 5921431

Please sign in to comment.