Skip to content

Commit

Permalink
fix(#887): small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rikkarth committed Apr 21, 2024
1 parent 03def9c commit 0bace72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/json/JSONArray.java
Expand Up @@ -107,7 +107,7 @@ public JSONArray(JSONTokener x, JSONParserConfiguration jsonParserConfiguration)
}
if (nextChar != ']') {
x.back();
for (; ; ) {
for (;;) {
if (x.nextClean() == ',') {
x.back();
this.myArrayList.add(JSONObject.NULL);
Expand Down

0 comments on commit 0bace72

Please sign in to comment.