Removing advanced constructors from new Data reference

This commit is contained in:
REAS
2013-06-03 10:00:04 -07:00
parent 476318fd76
commit a636728bb5
9 changed files with 72 additions and 22 deletions

View File

@@ -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();