We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c6a62 commit 5b914f9Copy full SHA for 5b914f9
src/main/java/com/github/webee/json/JSONType.java
@@ -8,6 +8,6 @@ public enum JSONType {
8
Boolean, // -> Boolean
9
Number, // -> Number
10
String, // -> String
11
- Object, // -> Map<String, Object>
+ Object, // -> Map
12
Array, // -> Object[]
13
}
src/main/java/com/github/webee/json/Utils.java
@@ -53,7 +53,7 @@ public static Object[] arrayToObjects(JSONArray array) {
53
54
55
/**
56
- * convert JSONObject to a Map<String, Object> tree with pure java objects.
+ * convert JSONObject to a Map tree with pure java objects.
57
* @param object the JSONObject to convert.
58
* @return the pure java objects tree .
59
*/
0 commit comments