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:
Tom Tromey 2001-12-18 17:27:43 +00:00 committed by Tom Tromey
parent 8c5bc4d56e
commit e964a852b2
2 changed files with 9 additions and 3 deletions

View File

@ -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:

View File

@ -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.