* java/lang/Character,java (isDefined): getType() != UNASSIGNED.

From-SVN: r51982
This commit is contained in:
Mark Wielaard 2002-04-07 07:45:06 +00:00 committed by Mark Wielaard
parent 236fc6a041
commit e45a3a5910
2 changed files with 5 additions and 1 deletions

View file

@ -1583,7 +1583,7 @@ public final class Character implements Serializable, Comparable
*/
public static boolean isDefined(char ch)
{
return getType(ch) == UNASSIGNED;
return getType(ch) != UNASSIGNED;
}
/**