Merge pull request #835 from LaFriska/branch1

deleted redundant .toString() call in README test method Sysout
This commit is contained in:
Sean Leary 2023-12-07 08:20:34 -06:00 committed by GitHub
commit 6dba7220e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,7 @@ import org.json.JSONObject;
public class Test {
public static void main(String args[]){
JSONObject jo = new JSONObject("{ \"abc\" : \"def\" }");
System.out.println(jo.toString());
System.out.println(jo);
}
}
```