(@Nullable Map<String, Object> m)
| 360 | } |
| 361 | |
| 362 | public @Nullable Map<String, Object> parseMap(@Nullable Map<String, Object> m) throws ReflectiveOperationException { |
| 363 | return next() == '{' ? parseMap0(m) : m; |
| 364 | } |
| 365 | |
| 366 | @NotNull Map<String, Object> parseMap0(@Nullable Map<String, Object> m) throws ReflectiveOperationException { |
| 367 | if (m == null) |