Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions JSONObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,6 @@ public JSONObject() {
* A JSONObject.
* @param names
* An array of strings.
* @throws JSONException
* @exception JSONException
* If a value is a non-finite number or if a name is
* duplicated.
*/
public JSONObject(JSONObject jo, String[] names) {
this();
Expand Down Expand Up @@ -241,7 +237,6 @@ public JSONObject(JSONTokener x) throws JSONException {
* @param map
* A map object that can be used to initialize the contents of
* the JSONObject.
* @throws JSONException
*/
public JSONObject(Map<?, ?> map) {
this.map = new HashMap<String, Object>();
Expand Down