(Map<String, Object> input, String k1String)
| 174 | } |
| 175 | |
| 176 | private static void ensureMap(Map<String, Object> input, String k1String) |
| 177 | { |
| 178 | if (!input.containsKey(k1String)) |
| 179 | { |
| 180 | input.put(k1String, new HashMap<>()); |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | /** |
| 185 | * Builds the "game mode" data model |
no test coverage detected