Skip to content

Commit

Permalink
[#9346] Bump asm to 9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jaehong-kim committed Oct 31, 2022
1 parent 5d8cf38 commit 2cc0e15
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ public enum JvmVersion {
JAVA_15(15.0f, 59),
JAVA_16(16.0f, 60),
JAVA_17(17.0f, 61),
JAVA_18(18.0f, 62),
JAVA_19(19.0f, 63),
JAVA_20(20.0f, 64),
JAVA_RECENT(99.0f, 99),
UNSUPPORTED(-1, -1);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void testGetFromDoubleVersion_exceptional_case() {
assertSame(UNSUPPORTED, java_unsupported);

// new version
final JvmVersion java20 = JvmVersion.getFromVersion(20.f);
final JvmVersion java20 = JvmVersion.getFromVersion(21.f);
assertSame(JAVA_RECENT, java20);
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<javax.servlet.version>3.0.1</javax.servlet.version>


<asm.version>9.2</asm.version>
<asm.version>9.4</asm.version>
<thrift.version>0.16.0</thrift.version>
<caffeine.version>2.9.2</caffeine.version>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ public final class ASMVersion {
private ASMVersion() {
}

public static final int VERSION = Opcodes.ASM7;
public static final int VERSION = Opcodes.ASM9;
}

0 comments on commit 2cc0e15

Please sign in to comment.