mirror of
https://github.com/processing/processing4.git
synced 2026-02-05 06:39:20 +01:00
Removing advanced constructors from new Data reference
This commit is contained in:
@@ -108,7 +108,6 @@ public class JSONArray {
|
||||
|
||||
/**
|
||||
* Construct an empty JSONArray.
|
||||
* @nowebref
|
||||
*/
|
||||
public JSONArray() {
|
||||
this.myArrayList = new ArrayList<Object>();
|
||||
@@ -125,8 +124,10 @@ public class JSONArray {
|
||||
|
||||
/**
|
||||
* Construct a JSONArray from a JSONTokener.
|
||||
*
|
||||
* @param x A JSONTokener
|
||||
* @throws JSONException If there is a syntax error.
|
||||
* @nowebref
|
||||
*/
|
||||
protected JSONArray(JSONTokener x) {
|
||||
this();
|
||||
|
||||
Reference in New Issue
Block a user