diff --git a/JSONArray.java b/JSONArray.java index 7c71d8d..673a919 100644 --- a/JSONArray.java +++ b/JSONArray.java @@ -69,15 +69,13 @@ import java.util.Map; *
  • Strings do not need to be quoted at all if they do not begin with a quote * or single quote, and if they do not contain leading or trailing spaces, and * if they do not contain any of these characters: - * { } [ ] / \ : , = ; # and if they do not look like numbers and + * { } [ ] / \ : , # and if they do not look like numbers and * if they are not the reserved words true, false, or * null.
  • - *
  • Values can be separated by ; (semicolon) as - * well as by , (comma).
  • * * * @author JSON.org - * @version 2012-11-13 + * @version 2013-04-18 */ public class JSONArray { @@ -117,7 +115,6 @@ public class JSONArray { this.myArrayList.add(x.nextValue()); } switch (x.nextClean()) { - case ';': case ',': if (x.nextClean() == ']') { return;