(String json)
| 87 | } |
| 88 | |
| 89 | public static Map<String, String> toMap(String json) { |
| 90 | return TextUtils.isEmpty(json) ? null : toMap(parse(json)); |
| 91 | } |
| 92 | |
| 93 | public static Map<String, String> toMap(JsonElement element) { |
| 94 | Map<String, String> map = new HashMap<>(); |
no test coverage detected