Update JSONArray.java

This commit is contained in:
Stranck 2020-12-04 01:07:29 +01:00
parent 57ad94ef5e
commit d85eea53bb

View File

@ -572,7 +572,7 @@ public class JSONArray implements Iterable<Object> {
* The JSONArray will be empty after this call returns. * The JSONArray will be empty after this call returns.
*/ */
public void clear() { public void clear() {
return this.map.clear(); return this.myArrayList.clear();
} }
/** /**