Commit f0cf7fb4 by chengzhuoshen

fix mx2Map code

parent a06587a5
...@@ -270,7 +270,7 @@ public class SwiftTransfer { ...@@ -270,7 +270,7 @@ public class SwiftTransfer {
} else if (object instanceof JSONObject) { } else if (object instanceof JSONObject) {
parseMxGsonMap(maps, (Map<String, Object>)object, prefix+"("+i+")"); parseMxGsonMap(maps, (Map<String, Object>)object, prefix+"("+i+")");
} else { } else {
maps.put(prefix+"["+i+"]", String.valueOf(object)); maps.put(prefix+"("+i+")", String.valueOf(object));
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment