1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

initial commit

This commit is contained in:
stleary 2018-05-02 20:28:45 -05:00
parent bfb300835f
commit a6284df9c7

View file

@ -391,7 +391,7 @@ public class JSONWriter {
* @throws JSONException If the number is not finite. * @throws JSONException If the number is not finite.
*/ */
public JSONWriter value(double d) throws JSONException { public JSONWriter value(double d) throws JSONException {
return this.value(new Double(d)); return this.value(Double.valueOf(d));
} }
/** /**