Skip to content

Commit

Permalink
Fix the major version of Java 21.
Browse files Browse the repository at this point in the history
66 is Java 22. 65 is Java 21.
  • Loading branch information
cescoffier committed Nov 24, 2023
1 parent 2559fa7 commit 3d815e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ final class Known implements JavaVersion {
private static final int JAVA_11_MAJOR = 55;
private static final int JAVA_17_MAJOR = 61;
private static final int JAVA_19_MAJOR = 63;
private static final int JAVA_21_MAJOR = 66;
private static final int JAVA_21_MAJOR = 65;

private final int determinedMajor;

Expand Down

0 comments on commit 3d815e7

Please sign in to comment.