Skip to content

Commit 0bace72

Browse files
committed
fix(#887): small typo
1 parent 03def9c commit 0bace72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/json/JSONArray.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public JSONArray(JSONTokener x, JSONParserConfiguration jsonParserConfiguration)
107107
}
108108
if (nextChar != ']') {
109109
x.back();
110-
for (; ; ) {
110+
for (;;) {
111111
if (x.nextClean() == ',') {
112112
x.back();
113113
this.myArrayList.add(JSONObject.NULL);

0 commit comments

Comments
 (0)