From 15719886f739259800b1cd3f50fd00776b8a48ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Gill=C3=A9?= Date: Wed, 17 Jan 2018 18:41:48 +0100 Subject: [PATCH] Remove wrong apostrophe --- JSONObject.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JSONObject.java b/JSONObject.java index f3a715f..5a6b734 100644 --- a/JSONObject.java +++ b/JSONObject.java @@ -2212,7 +2212,7 @@ public class JSONObject { // not all Numbers may match actual JSON Numbers. i.e. fractions or Imaginary final String numberAsString = numberToString((Number) value); try { - // Use the BigDecimal constructor for it's parser to validate the format. + // Use the BigDecimal constructor for its parser to validate the format. @SuppressWarnings("unused") BigDecimal testNum = new BigDecimal(numberAsString); // Close enough to a JSON number that we will use it unquoted