fix(#887): small typo

This commit is contained in:
rikkarth
2024-04-21 22:09:05 +01:00
parent 03def9c7fc
commit 0bace72ced

View File

@@ -107,7 +107,7 @@ public class JSONArray implements Iterable<Object> {
} }
if (nextChar != ']') { if (nextChar != ']') {
x.back(); x.back();
for (; ; ) { for (;;) {
if (x.nextClean() == ',') { if (x.nextClean() == ',') {
x.back(); x.back();
this.myArrayList.add(JSONObject.NULL); this.myArrayList.add(JSONObject.NULL);