chore(#871-strictMode): reverted unrelated changes

This commit is contained in:
rikkarth
2024-03-17 15:20:38 +00:00
parent f3b3491f4d
commit 3672b5e158
5 changed files with 1712 additions and 1190 deletions

View File

@@ -4,7 +4,6 @@ package org.json;
* Configuration object for the JSON parser. The configuration is immutable.
*/
public class JSONParserConfiguration extends ParserConfiguration {
/**
* Used to indicate whether to overwrite duplicate key or not.
*/
@@ -34,9 +33,10 @@ public class JSONParserConfiguration extends ParserConfiguration {
}
/**
* Defines the maximum nesting depth that the parser will descend before throwing an exception when parsing a map
* into JSONObject or parsing a {@link java.util.Collection} instance into JSONArray. The default max nesting depth
* is 512, which means the parser will throw a JsonException if the maximum depth is reached.
* Defines the maximum nesting depth that the parser will descend before throwing an exception
* when parsing a map into JSONObject or parsing a {@link java.util.Collection} instance into
* JSONArray. The default max nesting depth is 512, which means the parser will throw a JsonException
* if the maximum depth is reached.
*
* @param maxNestingDepth the maximum nesting depth allowed to the JSON parser
* @return The existing configuration will not be modified. A new configuration is returned.
@@ -51,8 +51,9 @@ public class JSONParserConfiguration extends ParserConfiguration {
}
/**
* Controls the parser's behavior when meeting duplicate keys. If set to false, the parser will throw a
* JSONException when meeting a duplicate key. Or the duplicate key's value will be overwritten.
* Controls the parser's behavior when meeting duplicate keys.
* If set to false, the parser will throw a JSONException when meeting a duplicate key.
* Or the duplicate key's value will be overwritten.
*
* @param overwriteDuplicateKey defines should the parser overwrite duplicate keys.
* @return The existing configuration will not be modified. A new configuration is returned.
@@ -83,8 +84,8 @@ public class JSONParserConfiguration extends ParserConfiguration {
}
/**
* The parser's behavior when meeting duplicate keys, controls whether the parser should overwrite duplicate keys or
* not.
* The parser's behavior when meeting duplicate keys, controls whether the parser should
* overwrite duplicate keys or not.
*
* @return The <code>overwriteDuplicateKey</code> configuration value.
*/