On Tue, 3 Mar 2026 18:53:22 GMT, John Hendrikx <[email protected]> wrote:
>> Michael Strauß has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> review comment
>
> modules/javafx.graphics/src/main/java/com/sun/scenario/effect/impl/Renderer.java
> line 90:
>
>> 88: private static final class PeerCacheKey {
>> 89: String name;
>> 90: int unrollCount;
>
> Could this simply be `record PeerCacheKey(String name, int unrollCount) {}` ?
Initially I had the same thought, but the variables need to be modified (set),
so not possible with a record unfortunately.
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/2091#discussion_r3252928165