Skip to content

Commit

Permalink
apply reviewer remark
Browse files Browse the repository at this point in the history
  • Loading branch information
zapster authored and marwan-hallaoui committed Apr 17, 2024
1 parent a050286 commit 9b40f6e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ public final class JVMCIVersionCheck {
* default/fallback entry.
*/
private static final Map<String, Map<String, Version>> JVMCI_MIN_VERSIONS = Map.of(
"21", Map.of(DEFAULT_VENDOR_ENTRY, new Version(23, 1, 33)),
"21", Map.of(DEFAULT_VENDOR_ENTRY, createLegacyVersion(23, 1, 33)),
"23", Map.of(
"Oracle Corporation", new Version("23+18", 2),
DEFAULT_VENDOR_ENTRY, new Version("23+18", 2)));
DEFAULT_VENDOR_ENTRY, createOpenJDKVersion("23+18")));
private static final int NA = 0;
/**
* Minimum Java release supported by Graal.
Expand Down

0 comments on commit 9b40f6e

Please sign in to comment.