We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3f37b commit 4319b71Copy full SHA for 4319b71
src/main/java/org/json/JSONParserConfiguration.java
@@ -28,6 +28,10 @@ public class JSONParserConfiguration extends ParserConfiguration {
28
*/
29
public JSONParserConfiguration() {
30
super();
31
+ // TODO: Force strict mode to true, unless otherwise set by .withStrictMode()
32
+ // This will be replaced with a later change that executes test runs with and without strict mode.
33
+ // This change will cause many of the unit tests to fail.
34
+ this.strictMode = true;
35
this.overwriteDuplicateKey = false;
36
}
37
0 commit comments