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
This commit is contained in:
Bryce McKinlay 2000-04-28 07:56:34 +00:00 committed by Bryce McKinlay
parent 2a96658aa6
commit 065ccab369
2 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,7 @@
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:

View File

@ -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;
}