src/java.desktop/windows/classes/sun/awt/windows/WWindowPeer.java

Print this page

        

@@ -57,11 +57,11 @@
     /*
      * A key used for storing a list of active windows in AppContext. The value
      * is a list of windows, sorted by the time of activation: later a window is
      * activated, greater its index is in the list.
      */
-    private final static StringBuffer ACTIVE_WINDOWS_KEY =
+    private static final StringBuffer ACTIVE_WINDOWS_KEY =
         new StringBuffer("active_windows_list");
 
     /*
      * Listener for 'activeWindow' KFM property changes. It is added to each
      * AppContext KFM. See ActiveWindowListener inner class below.

@@ -70,11 +70,11 @@
         new ActiveWindowListener();
 
     /*
      * The object is a listener for the AppContext.GUI_DISPOSED property.
      */
-    private final static PropertyChangeListener guiDisposedListener =
+    private static final PropertyChangeListener guiDisposedListener =
         new GuiDisposedListener();
 
     /*
      * Called (on the Toolkit thread) before the appropriate
      * WindowStateEvent is posted to the EventQueue.