We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c9573c commit c175a9eCopy full SHA for c175a9e
1 file changed
src/main/java/org/json/JSONArray.java
@@ -243,11 +243,6 @@ public JSONArray(int initialCapacity) throws JSONException {
243
this.myArrayList = new ArrayList<Object>(initialCapacity);
244
}
245
246
- @Override
247
- protected Object clone() {
248
- return new JSONArray(this.myArrayList);
249
- }
250
-
251
@Override
252
public Iterator<Object> iterator() {
253
return this.myArrayList.iterator();
0 commit comments