@@ -69,15 +69,13 @@ of this software and associated documentation files (the "Software"), to deal
69
69
* <li>Strings do not need to be quoted at all if they do not begin with a quote
70
70
* or single quote, and if they do not contain leading or trailing spaces, and
71
71
* if they do not contain any of these characters:
72
- * <code>{ } [ ] / \ : ,= ; #</code> and if they do not look like numbers and
72
+ * <code>{ } [ ] / \ : , #</code> and if they do not look like numbers and
73
73
* if they are not the reserved words <code>true</code>, <code>false</code>, or
74
74
* <code>null</code>.</li>
75
- * <li>Values can be separated by <code>;</code> <small>(semicolon)</small> as
76
- * well as by <code>,</code> <small>(comma)</small>.</li>
77
75
* </ul>
78
76
*
79
77
* @author JSON.org
80
- * @version2012-11-13
78
+ * @version2013-04-18
81
79
*/
82
80
public class JSONArray {
83
81
@@ -117,7 +115,6 @@ public JSONArray(JSONTokener x) throws JSONException {
117
115
this .myArrayList .add (x .nextValue ());
118
116
}
119
117
switch (x .nextClean ()) {
120
- case ';' :
121
118
case ',' :
122
119
if (x .nextClean () ==']' ) {
123
120
return ;