Skip to content

Commit 6dba722

Browse files
authored
Merge pull request #835 from LaFriska/branch1
deleted redundant .toString() call in README test method Sysout
2 parents d452169 + 7cbeb35 commit 6dba722

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import org.json.JSONObject;
6666
public class Test {
6767
public static void main(String args[]){
6868
JSONObject jo = new JSONObject("{ \"abc\" : \"def\" }");
69-
System.out.println(jo.toString());
69+
System.out.println(jo);
7070
}
7171
}
7272
```

0 commit comments

Comments
 (0)