aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/lang/reflect/Modifier.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/lang/reflect/Modifier.java')
-rw-r--r--libjava/java/lang/reflect/Modifier.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/libjava/java/lang/reflect/Modifier.java b/libjava/java/lang/reflect/Modifier.java
index 3e36d370d4e..75d0c9b47f5 100644
--- a/libjava/java/lang/reflect/Modifier.java
+++ b/libjava/java/lang/reflect/Modifier.java
@@ -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)