]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Modifier.java (toString(int,StringBuffer)): Fix ordering.
authorMark Wielaard <mark@klomp.org>
Thu, 4 Apr 2002 08:32:28 +0000 (08:32 +0000)
committerMark Wielaard <mark@gcc.gnu.org>
Thu, 4 Apr 2002 08:32:28 +0000 (08:32 +0000)
        * java/lang/reflect/Modifier.java (toString(int,StringBuffer)): Fix
        ordering.

From-SVN: r51848

libjava/ChangeLog
libjava/java/lang/reflect/Modifier.java

index 50e91e8809ed0da65abc32022d8fe311d97feaa7..60d724267f145f528645f1b773c70e57599d1112 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-03  Mark Wielaard  <mark@klomp.org>
+
+       * java/lang/reflect/Modifier.java (toString(int,StringBuffer)): Fix
+       ordering.
+
 2002-04-02  Tom Tromey  <tromey@redhat.com>
 
        * java/lang/natClassLoader.cc (findClass): Compare against `3',
index 3e36d370d4eb50e6bb6ae7817dcae5b2f0a6c101..75d0c9b47f5938cd49d7fd5f16f34ebf8e25901a 100644 (file)
@@ -280,8 +280,8 @@ public class Modifier
   /**
    * Get a string representation of all the modifiers represented by the
    * given int. The keywords are printed in this order:
-   * <code>&lt;public|private|protected&gt; abstract static final transient
-   * volatile native synchronized interface strictfp</code>.
+   * <code>&lt;public|protected|private&gt; abstract static final transient
+   * volatile synchronized native strictfp interface</code>.
    *
    * @param mod the modifier.
    * @return the String representing the modifiers.
@@ -301,10 +301,10 @@ public class Modifier
   {
     if (isPublic(mod))
       r.append("public ");
-    if (isPrivate(mod))
-      r.append("private ");
     if (isProtected(mod))
       r.append("protected ");
+    if (isPrivate(mod))
+      r.append("private ");
     if (isAbstract(mod))
       r.append("abstract ");
     if (isStatic(mod))
@@ -315,14 +315,14 @@ public class Modifier
       r.append("transient ");
     if (isVolatile(mod))
       r.append("volatile ");
-    if (isNative(mod))
-      r.append("native ");
     if (isSynchronized(mod))
       r.append("synchronized ");
-    if (isInterface(mod))
-      r.append("interface ");
+    if (isNative(mod))
+      r.append("native ");
     if (isStrict(mod))
       r.append("strictfp ");
+    if (isInterface(mod))
+      r.append("interface ");
     
     // Trim trailing space.
     if ((mod & ALL_FLAGS) != 0)