Commit 065ccab3 by Bryce McKinlay Committed by Bryce McKinlay

String.java (toString): Remove `final' hack.

2000-04-28  Bryce McKinlay  <bryce@albatross.co.nz>

	* libjava/java/lang/String.java (toString): Remove `final' hack.

From-SVN: r33508
parent 2a96658a
2000-04-28 Bryce McKinlay <bryce@albatross.co.nz>
* libjava/java/lang/String.java (toString): Remove `final' hack.
2000-04-05 Tom Tromey <tromey@cygnus.com>
Runtime support for PR gcj/2:
......
......@@ -115,9 +115,6 @@ public final class String
public String toString ()
{
// because String is final, we actually get this far on a null reference
if (this == null)
throw new NullPointerException();
return this;
}
......
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