Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
msridhar committed Jul 20, 2024
1 parent 96cb898 commit b6220c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
java: 17
- os: ubuntu-latest
java: 21
- os: ubuntu-latest
java: 22
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void parse() throws InvalidClassFileException {
throw new InvalidClassFileException(offset, "bad magic number: " + magic);
}
// Support class files up through JDK 21 (version 65)
if (majorVersion < 45 || majorVersion > 65) {
if (majorVersion < 45 || majorVersion > 66) {
throw new InvalidClassFileException(
offset, "unknown class file version: " + majorVersion + '.' + minorVersion);
}
Expand Down

0 comments on commit b6220c0

Please sign in to comment.