Commit e964a852 by Tom Tromey Committed by Tom Tromey

CollationElementIterator.java (secondaryOrder): Cast result to `short'.

	* java/text/CollationElementIterator.java (secondaryOrder): Cast
	result to `short'.
	(tertiaryOrder): Likewise.

From-SVN: r48162
parent 8c5bc4d5
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:
......
// 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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment