src/java.desktop/share/classes/java/awt/DisplayMode.java

Print this page

        

@@ -90,11 +90,11 @@
     /**
      * Value of the bit depth if multiple bit depths are supported in this
      * display mode.
      * @see #getBitDepth
      */
-    @Native public final static int BIT_DEPTH_MULTI = -1;
+    @Native public static final int BIT_DEPTH_MULTI = -1;
 
     /**
      * Returns the bit depth of the display, in bits per pixel.  This may be
      * <code>BIT_DEPTH_MULTI</code> if multiple bit depths are supported in
      * this display mode.

@@ -108,11 +108,11 @@
 
     /**
      * Value of the refresh rate if not known.
      * @see #getRefreshRate
      */
-    @Native public final static int REFRESH_RATE_UNKNOWN = 0;
+    @Native public static final int REFRESH_RATE_UNKNOWN = 0;
 
     /**
      * Returns the refresh rate of the display, in hertz.  This may be
      * <code>REFRESH_RATE_UNKNOWN</code> if the information is not available.
      *