renaming again

This commit is contained in:
benfry
2012-12-11 01:09:02 +00:00
parent eff1581334
commit d33c152ee1
3 changed files with 54 additions and 54 deletions

View File

@@ -359,7 +359,7 @@ public class JSONTokener {
return this.nextString(c);
case '{':
this.back();
return new JSON(this);
return new JSONObject(this);
case '[':
this.back();
return new JSONArray(this);
@@ -385,7 +385,7 @@ public class JSONTokener {
if ("".equals(string)) {
throw new RuntimeException("Missing value");
}
return JSON.stringToValue(string);
return JSONObject.stringToValue(string);
}