Skip to content

Commit 5b914f9

Browse files
committed
fix.
1 parent e9c6a62 commit 5b914f9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/github/webee/json/JSONType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ public enum JSONType {
88
Boolean, // -> Boolean
99
Number, // -> Number
1010
String, // -> String
11-
Object, // -> Map<String, Object>
11+
Object, // -> Map
1212
Array, // -> Object[]
1313
}

src/main/java/com/github/webee/json/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static Object[] arrayToObjects(JSONArray array) {
5353
}
5454

5555
/**
56-
* convert JSONObject to a Map<String, Object> tree with pure java objects.
56+
* convert JSONObject to a Map tree with pure java objects.
5757
* @param object the JSONObject to convert.
5858
* @return the pure java objects tree .
5959
*/

0 commit comments

Comments
 (0)