Skip to content

Commit 7cbeb35

Browse files
committed
deleted redundant .toString() call in README test method Sysout
1 parent 9299177 commit 7cbeb35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)