Skip to content

Commit

Permalink
+ detect more service versions of Java 23 as well ...
Browse files Browse the repository at this point in the history
  • Loading branch information
stephan-herrmann committed Oct 31, 2024
1 parent 014e591 commit 8c9a5f0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,8 @@ static int minorFromRawVersion (String version, String rawVersion) {
switch(rawVersion) {
case "23-ea", "23":
return 0000;
case "23.0.1": return 0100;
case "23.0.2": return 0200;
}
}
throw new RuntimeException("unknown raw javac version: " + rawVersion);
Expand Down

0 comments on commit 8c9a5f0

Please sign in to comment.