On Fri, 11 Sep 2026 11:20:03 GMT, Marius Hanl <[email protected]> wrote:
>> Michael Strauß has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> review comments
>
> modules/javafx.graphics/src/main/java/com/sun/javafx/css/InterpolatorConverter.java
> line 102:
>
>> 100: return switch (funcName) {
>> 101: case "cubic-bezier(" -> CACHE.computeIfAbsent(value,
>> key -> {
>> 102: return Interpolator.ofSpline(
>
> This now can be an expression lambda if you like
Also the `key` is unused now here and below. So you could use `_` instead as
name.
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/2303#discussion_r3988633835