* java/lang/Double.java (valueOf): Call parseDouble().
From-SVN: r34737
This commit is contained in:
parent
4afdac6d1c
commit
260e1a2bb0
@ -1,3 +1,7 @@
|
||||
2000-06-27 Tom Tromey <tromey@cygnus.com>
|
||||
|
||||
* java/lang/Double.java (valueOf): Call parseDouble().
|
||||
|
||||
2000-06-26 Warren Levy <warrenl@cygnus.com>
|
||||
|
||||
* java/beans/PropertyChangeEvent.java (oldVal): Renamed to oldValue.
|
||||
|
@ -112,7 +112,7 @@ public final class Double extends Number
|
||||
if (s == null)
|
||||
throw new NullPointerException ();
|
||||
|
||||
return new Double (doubleValueOf (s));
|
||||
return new Double (parseDouble (s));
|
||||
}
|
||||
|
||||
public boolean isNaN ()
|
||||
|
Loading…
Reference in New Issue
Block a user