Commit a5774acd by Jesse Rosenstock Committed by Tom Tromey

For PR libgcj/7292:

2002-07-12  Jesse Rosenstock  <jmr@fulcrummicro.com>

	For PR libgcj/7292:
	* java/lang/Character.java (toString(char)): Now static.

From-SVN: r55427
parent f7a454e9
2002-07-12 Jesse Rosenstock <jmr@fulcrummicro.com>
For PR libgcj/7292:
* java/lang/Character.java (toString(char)): Now static.
2002-07-12 Mark Wielaard <mark@klomp.org> 2002-07-12 Mark Wielaard <mark@klomp.org>
* java/lang/natThrowable.cc (printRawStackTrace): removed. * java/lang/natThrowable.cc (printRawStackTrace): removed.
......
...@@ -1488,7 +1488,7 @@ public final class Character implements Serializable, Comparable ...@@ -1488,7 +1488,7 @@ public final class Character implements Serializable, Comparable
* @return a String containing the character * @return a String containing the character
* @since 1.4 * @since 1.4
*/ */
public String toString(char ch) public static String toString(char ch)
{ {
// This assumes that String.valueOf(char) can create a single-character // This assumes that String.valueOf(char) can create a single-character
// String more efficiently than through the public API. // String more efficiently than through the public API.
......
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