From 3672b5e158dadac7c0e2b5cc78dcbf86283ee7ba Mon Sep 17 00:00:00 2001 From: rikkarth Date: Sun, 17 Mar 2024 15:20:38 +0000 Subject: [PATCH] chore(#871-strictMode): reverted unrelated changes --- src/main/java/org/json/JSONArray.java | 1037 ++++++----- src/main/java/org/json/JSONObject.java | 1553 ++++++++++------- .../org/json/JSONParserConfiguration.java | 17 +- src/main/java/org/json/JSONTokener.java | 283 ++- .../junit/JSONParserConfigurationTest.java | 12 +- 5 files changed, 1712 insertions(+), 1190 deletions(-) diff --git a/src/main/java/org/json/JSONArray.java b/src/main/java/org/json/JSONArray.java index 014ba3c..c6c867b 100644 --- a/src/main/java/org/json/JSONArray.java +++ b/src/main/java/org/json/JSONArray.java @@ -18,10 +18,11 @@ import java.util.Map; /** - * A JSONArray is an ordered sequence of values. Its external text form is a string wrapped in square brackets with - * commas separating the values. The internal form is an object having get and opt methods for - * accessing the values by index, and put methods for adding or replacing values. The values can be any of - * these types: + * A JSONArray is an ordered sequence of values. Its external text form is a + * string wrapped in square brackets with commas separating the values. The + * internal form is an object having get and opt + * methods for accessing the values by index, and put methods for + * adding or replacing values. The values can be any of these types: * Boolean, JSONArray, JSONObject, * Number, String, or the * JSONObject.NULL object. @@ -29,17 +30,19 @@ import java.util.Map; * The constructor can convert a JSON text into a Java object. The * toString method converts to JSON text. *

- * A get method returns a value if one can be found, and throws an exception if one cannot be found. An - * opt method returns a default value instead of throwing an exception, and so is useful for obtaining - * optional values. + * A get method returns a value if one can be found, and throws an + * exception if one cannot be found. An opt method returns a + * default value instead of throwing an exception, and so is useful for + * obtaining optional values. *

- * The generic get() and opt() methods return an object which you can cast or query for type. - * There are also typed + * The generic get() and opt() methods return an + * object which you can cast or query for type. There are also typed * get and opt methods that do type checking and type * coercion for you. *

- * The texts produced by the toString methods strictly conform to JSON syntax rules. The constructors are - * more forgiving in the texts they will accept: + * The texts produced by the toString methods strictly conform to + * JSON syntax rules. The constructors are more forgiving in the texts they will + * accept: *