On Tue, 20 Jan 2026 16:32:05 GMT, Andy Goryachev <[email protected]> wrote:
>> Michael Strauß has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> fix detection of sub-properties
>
> modules/javafx.graphics/src/main/java/javafx/scene/CssStyleHelper.java line
> 550:
>
>> 548: }
>> 549:
>> 550: for (int i = 0, max = subProperties.size(); i < max; ++i) {
>
> very, very minor: since the order probably does not matter:
>
>
> for (int i = subProperties.size() - 1, i >= 0; --i) {
The order doesn't matter, but with reverse iteration, I always stop to think
whether that tells me something important.
Someone recently said: why do you force me to think? 😉
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/2038#discussion_r2709197189