mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 10:00:42 +01:00
Changed the access modifier of get()
This commit is contained in:
@@ -540,7 +540,7 @@ public class JSONObject {
|
||||
* @return The object associated with the key.
|
||||
* @throws JSONException if the key is not found.
|
||||
*/
|
||||
private Object get(String key) {
|
||||
public Object get(String key) {
|
||||
if (key == null) {
|
||||
throw new RuntimeException("Null key.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user