RFR: 8374340: FontRenderContext instance variables should be final [v2]

Daniel Gredler dgredler at openjdk.org
Fri Dec 26 12:00:12 UTC 2025


On Thu, 25 Dec 2025 09:16:09 GMT, Andrey Turbanov <aturbanov at openjdk.org> wrote:

>> Daniel Gredler has updated the pull request incrementally with one additional commit since the last revision:
>> 
>>   Swap order 'transient final' -> 'final transient'
>
> src/java.desktop/share/classes/java/awt/font/FontRenderContext.java line 66:
> 
>> 64: */
>> 65: public class FontRenderContext {
>> 66:     private transient final AffineTransform tx;
> 
> Let's use blessed modifiers order
> Suggestion:
> 
>     private final transient AffineTransform tx;

No problem, I've swapped the order as indicated.

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/28981#discussion_r2648092754


More information about the client-libs-dev mailing list