-
Enhancement
-
Resolution: Fixed
-
P3
-
7u6
There's a private method inside Node "private boolean hasTransforms()" which is
used to avoid getTransforms() when there are none. The getTransforms() call
would instantiate a property or properties unnecessarily.
In the Text subclass I need to call hasTransforms() but its private.
As a result I am forced to call getTransforms() which is inefficient.
I see no harm in making this method public.
used to avoid getTransforms() when there are none. The getTransforms() call
would instantiate a property or properties unnecessarily.
In the Text subclass I need to call hasTransforms() but its private.
As a result I am forced to call getTransforms() which is inefficient.
I see no harm in making this method public.
- relates to
-
JDK-8091077 Consider adding has<PropertyName>() for List properties
- Open