summaryrefslogtreecommitdiff
path: root/ddl/out/java/LambdaCube/TypeInfo/JSON.java
diff options
context:
space:
mode:
Diffstat (limited to 'ddl/out/java/LambdaCube/TypeInfo/JSON.java')
-rw-r--r--ddl/out/java/LambdaCube/TypeInfo/JSON.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/ddl/out/java/LambdaCube/TypeInfo/JSON.java b/ddl/out/java/LambdaCube/TypeInfo/JSON.java
index 59498c6..6491702 100644
--- a/ddl/out/java/LambdaCube/TypeInfo/JSON.java
+++ b/ddl/out/java/LambdaCube/TypeInfo/JSON.java
@@ -1,5 +1,5 @@
1// generated file, do not modify! 1// generated file, do not modify!
2// 2016-03-29T11:30:13.322407000000Z 2// 2016-04-01T16:25:35.327304000000Z
3 3
4package LambdaCube.TypeInfo; 4package LambdaCube.TypeInfo;
5 5
@@ -27,7 +27,7 @@ public class JSON {
27 27
28 public static Object fromJSON(Type type, Object rawObj) throws JSONException, Exception { 28 public static Object fromJSON(Type type, Object rawObj) throws JSONException, Exception {
29 switch (type) { 29 switch (type) {
30 case Int: return (Integer)rawObj; 30 case Int: return ((Number)rawObj).intValue();
31 case String: return (String)rawObj; 31 case String: return (String)rawObj;
32 case Array_Range: { 32 case Array_Range: {
33 JSONArray obj = (JSONArray)rawObj; 33 JSONArray obj = (JSONArray)rawObj;