--- old/src/java.desktop/share/classes/javax/swing/JComponent.java 2015-09-18 13:05:45.105448834 -0700 +++ new/src/java.desktop/share/classes/javax/swing/JComponent.java 2015-09-18 13:05:44.997448838 -0700 @@ -377,8 +377,8 @@ /** * AA text hints. */ - transient private Object aaHint; - transient private Object lcdRenderingHint; + private transient Object aaHint; + private transient Object lcdRenderingHint; static Graphics safelyGetGraphics(Component c) { return safelyGetGraphics(c, SwingUtilities.getRoot(c)); @@ -2805,7 +2805,7 @@ * @see #setLocale * @since 1.4 */ - static public Locale getDefaultLocale() { + public static Locale getDefaultLocale() { Locale l = (Locale) SwingUtilities.appContextGet(defaultLocale); if( l == null ) { //REMIND(bcb) choosing the default value is more complicated @@ -2832,7 +2832,7 @@ * @see #setLocale * @since 1.4 */ - static public void setDefaultLocale( Locale l ) { + public static void setDefaultLocale( Locale l ) { SwingUtilities.appContextPut(defaultLocale, l); } @@ -3714,7 +3714,7 @@ * to add/remove ContainerListener and FocusListener to track * target JComponent's state */ - private volatile transient int propertyListenersCount = 0; + private transient volatile int propertyListenersCount = 0; /** * This field duplicates the function of the accessibleAWTFocusHandler field