Skip to content

Commit

Permalink
Disable reverse grapheme tests on older JDK versions
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaverner committed Oct 28, 2024
1 parent 232622a commit 3593b61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public enum Cap {
* on JDK versions less than 20 which are not supported in ES 9.0.0+ but this
* exists to keep the {@code 8.x} branch similar to the {@code main} branch.
*/
FN_REVERSE_GRAPHEME_CLUSTERS,
FN_REVERSE_GRAPHEME_CLUSTERS(Runtime.version().feature() >= 20),

/**
* Support for function {@code CBRT}. Done in #108574.
Expand Down

0 comments on commit 3593b61

Please sign in to comment.