* java/lang/Double.java (valueOf): Call parseDouble().
From-SVN: r34737
This commit is contained in:
@@ -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 ()
|
||||
|
||||
Reference in New Issue
Block a user