Commit e45a3a59 by Mark Wielaard Committed by Mark Wielaard

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

From-SVN: r51982
parent 236fc6a0
2002-04-06 Mark Wielaard <mark@klomp.org> 2002-04-06 Mark Wielaard <mark@klomp.org>
* java/lang/Character,java (isDefined): getType() != UNASSIGNED.
2002-04-06 Mark Wielaard <mark@klomp.org>
* java/util/ArrayList.java (addAll(int,Collection)): System.arraycopy * java/util/ArrayList.java (addAll(int,Collection)): System.arraycopy
all of the remaining elements. all of the remaining elements.
* java/util/Vector.java (addAll(int,Collection)): Likewise. * java/util/Vector.java (addAll(int,Collection)): Likewise.
......
...@@ -1583,7 +1583,7 @@ public final class Character implements Serializable, Comparable ...@@ -1583,7 +1583,7 @@ public final class Character implements Serializable, Comparable
*/ */
public static boolean isDefined(char ch) public static boolean isDefined(char ch)
{ {
return getType(ch) == UNASSIGNED; return getType(ch) != UNASSIGNED;
} }
/** /**
......
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