diff options
Diffstat (limited to 'libjava/java/text/CollationElementIterator.java')
-rw-r--r-- | libjava/java/text/CollationElementIterator.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/text/CollationElementIterator.java b/libjava/java/text/CollationElementIterator.java index 90091e34884..91f341f55b2 100644 --- a/libjava/java/text/CollationElementIterator.java +++ b/libjava/java/text/CollationElementIterator.java @@ -181,7 +181,7 @@ public final class CollationElementIterator * * @return The primary order value of the specified collation value. This is the high 16 bits. */ - public static final int primaryOrder(int order) + public static int primaryOrder(int order) { // From the JDK 1.2 spec. return order >>> 16; @@ -205,7 +205,7 @@ public final class CollationElementIterator * * @return The secondary order value of the specified collation value. This is the bits 8-15. */ - public static final short secondaryOrder(int order) + public static short secondaryOrder(int order) { // From the JDK 1.2 spec. return (short) ((order >>> 8) & 255); @@ -219,7 +219,7 @@ public final class CollationElementIterator * * @return The tertiary order value of the specified collation value. This is the low eight bits. */ - public static final short tertiaryOrder(int order) + public static short tertiaryOrder(int order) { // From the JDK 1.2 spec. return (short) (order & 255); |