|
|
@ -28,7 +28,7 @@ public class JsonKeyCase { |
|
|
|
|
|
|
|
|
|
|
|
Object value = data.get(key); |
|
|
|
Object value = data.get(key); |
|
|
|
|
|
|
|
|
|
|
|
String name = value.getClass().getName(); |
|
|
|
String name = value != null ? value.getClass().getName() : ""; |
|
|
|
|
|
|
|
|
|
|
|
if (name.endsWith(Constants.JSONObject)){ |
|
|
|
if (name.endsWith(Constants.JSONObject)){ |
|
|
|
|
|
|
|
|
|
|
|