解决了marker异常问题

This commit is contained in:
董宏宇
2020-01-13 19:17:47 +08:00
parent 7db83b5aeb
commit 77481c7ed9
4 changed files with 19 additions and 15 deletions

View File

@@ -36,6 +36,7 @@ public class GsonUtil {
try {
return getGson().toJson(object);
} catch ( Exception var2) {
var2.printStackTrace();
return null;
}
}
@@ -48,6 +49,7 @@ public class GsonUtil {
try {
return getGson().fromJson(json, klass);
} catch ( Exception var3) {
var3.printStackTrace();
return null;
}
}