src/java.desktop/share/classes/javax/swing/UIManager.java

Print this page

        

@@ -1072,11 +1072,11 @@
      * @see #removeAuxiliaryLookAndFeel
      * @see #setLookAndFeel
      * @see #getAuxiliaryLookAndFeels
      * @see #getInstalledLookAndFeels
      */
-    static public void addAuxiliaryLookAndFeel(LookAndFeel laf) {
+    public static void addAuxiliaryLookAndFeel(LookAndFeel laf) {
         maybeInitialize();
 
         if (!laf.isSupportedLookAndFeel()) {
             // Ideally we would throw an exception here, but it's too late
             // for that.

@@ -1113,11 +1113,11 @@
      * @see #removeAuxiliaryLookAndFeel
      * @see #getAuxiliaryLookAndFeels
      * @see #setLookAndFeel
      * @see #getInstalledLookAndFeels
      */
-    static public boolean removeAuxiliaryLookAndFeel(LookAndFeel laf) {
+    public static boolean removeAuxiliaryLookAndFeel(LookAndFeel laf) {
         maybeInitialize();
 
         boolean result;
 
         Vector<LookAndFeel> v = getLAFState().auxLookAndFeels;

@@ -1151,11 +1151,11 @@
      * @see #addAuxiliaryLookAndFeel
      * @see #removeAuxiliaryLookAndFeel
      * @see #setLookAndFeel
      * @see #getInstalledLookAndFeels
      */
-    static public LookAndFeel[] getAuxiliaryLookAndFeels() {
+    public static LookAndFeel[] getAuxiliaryLookAndFeels() {
         maybeInitialize();
 
         Vector<LookAndFeel> v = getLAFState().auxLookAndFeels;
         if ((v == null) || (v.size() == 0)) {
             return null;