Skip to content

Commit

Permalink
Merge pull request #835 from LaFriska/branch1
Browse files Browse the repository at this point in the history
deleted redundant .toString() call in README test method Sysout
  • Loading branch information
stleary authored Dec 7, 2023
2 parents d452169 + 7cbeb35 commit 6dba722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
```
Expand Down

0 comments on commit 6dba722

Please sign in to comment.