CollationElementIterator.java (secondaryOrder): Cast result to `short'.
* java/text/CollationElementIterator.java (secondaryOrder): Cast result to `short'. (tertiaryOrder): Likewise. From-SVN: r48162
This commit is contained in:
parent
8c5bc4d56e
commit
e964a852b2
@ -1,3 +1,9 @@
|
||||
2001-12-18 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* java/text/CollationElementIterator.java (secondaryOrder): Cast
|
||||
result to `short'.
|
||||
(tertiaryOrder): Likewise.
|
||||
|
||||
2001-12-16 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
For PR libgcj/5103:
|
||||
|
@ -1,6 +1,6 @@
|
||||
// CollationElementIterator.java - Iterate over decomposed characters.
|
||||
|
||||
/* Copyright (C) 1999 Free Software Foundation
|
||||
/* Copyright (C) 1999, 2001 Free Software Foundation
|
||||
|
||||
This file is part of libgcj.
|
||||
|
||||
@ -45,13 +45,13 @@ public final class CollationElementIterator
|
||||
public static final short secondaryOrder (int order)
|
||||
{
|
||||
// From the JDK 1.2 spec.
|
||||
return (order >>> 8) & 255;
|
||||
return (short) ((order >>> 8) & 255);
|
||||
}
|
||||
|
||||
public static final short tertiaryOrder (int order)
|
||||
{
|
||||
// From the JDK 1.2 spec.
|
||||
return order & 255;
|
||||
return (short) (order & 255);
|
||||
}
|
||||
|
||||
// Non-public constructor.
|
||||
|
Loading…
Reference in New Issue
Block a user