* java/lang/Character,java (isDefined): getType() != UNASSIGNED.
From-SVN: r51982
This commit is contained in:
parent
236fc6a041
commit
e45a3a5910
2 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue