Skip to content

Commit

Permalink
Update ASM.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jan 20, 2020
1 parent 5c8bf1c commit fb4ce40
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
. ./.github/scripts/install-jdk.sh --feature ea --os linux-x64
./mvnw verify -Pjava14 -Dnet.bytebuddy.experimental=true
continue-on-error: true
hotspot-supported:
name: HotSpot (supported)
strategy:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public class ClassFileVersion implements Comparable<ClassFileVersion> {
/**
* The class file version of Java 15.
*/
public static final ClassFileVersion JAVA_V15 = new ClassFileVersion(Opcodes.V14 + 1);
public static final ClassFileVersion JAVA_V15 = new ClassFileVersion(Opcodes.V15);

/**
* A version locator for the executing JVM.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static Collection<Object[]> data() {
{12, 12, Arrays.asList("1.12", "12"), Opcodes.V12, (short) 56, (short) 0, true, true, true},
{13, 13, Arrays.asList("1.13", "13"), Opcodes.V13, (short) 57, (short) 0, true, true, true},
{14, 14, Arrays.asList("1.14", "14"), Opcodes.V14, (short) 58, (short) 0, true, true, true},
{15, 15, Arrays.asList("1.15", "15"), Opcodes.V14 + 1, (short) 59, (short) 0, true, true, true}
{15, 15, Arrays.asList("1.15", "15"), Opcodes.V15, (short) 59, (short) 0, true, true, true}
});
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<bytecode.test.version>1.6</bytecode.test.version>
<pitest.target>net.bytebuddy</pitest.target>
<asm.url>https://asm.ow2.io</asm.url>
<version.asm>7.2</version.asm>
<version.asm>7.3.1</version.asm>
<version.junit>4.12</version.junit>
<version.mockito>2.23.0</version.mockito>
<version.plugin.clean>3.0.0</version.plugin.clean>
Expand Down

0 comments on commit fb4ce40

Please sign in to comment.