On Tue, 16 Dec 2025 16:43:16 GMT, Andy Goryachev <[email protected]> wrote:
>> Michael Strauß has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> use CssParser.size() to parse sizes
>
> modules/javafx.graphics/src/main/java/com/sun/javafx/css/media/expression/RangeExpression.java
> line 118:
>
>> 116:
>> 117: public interface Supplier {
>> 118: RangeExpression getSizeExpression(SizeQueryType featureType,
>> Size sizeValue);
>
> minor: could we use a name other than Supplier to avoid clashing with
> java.util.function one (it is confusing).
I've thought about that, but then I never use that type unqualified (i.e.
always as `RangeExpression.Supplier`), and because it's so localized, I don't
want to make it a top-level interface. A more verbose name like
`RangeExpression.ExpressionSupplier` looks very chatty...
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/1844#discussion_r2624796222