src/java.desktop/share/classes/javax/swing/text/ParagraphView.java

Print this page

        

@@ -1182,15 +1182,15 @@
             return (short)(super.getBottomInset() +
                            ((minorRequest != null) ? minorRequest.preferred : 0) *
                            lineSpacing);
         }
 
-        final static int SPACE_ADDON = 0;
-        final static int SPACE_ADDON_LEFTOVER_END = 1;
-        final static int START_JUSTIFIABLE = 2;
+        static final int SPACE_ADDON = 0;
+        static final int SPACE_ADDON_LEFTOVER_END = 1;
+        static final int START_JUSTIFIABLE = 2;
         //this should be the last index in justificationData
-        final static int END_JUSTIFIABLE = 3;
+        static final int END_JUSTIFIABLE = 3;
 
         int justificationData[] = null;
     }
 
 }