Fix build after forgerock-commons commit 1663c9344e12
In JsonValue the signature of `Object object(Map.Entry...)` changed to `Map<String, Object> object(Map.Entry<String, Object>...)`
See https://stash.forgerock.org/projects/COMMONS/repos/forgerock-commons/commits/1663c9344e1059cbdaaa1726074223c57ac30d3c.
| | |
| | | return v != null ? JsonValue.field(k, v) : null; |
| | | } |
| | | |
| | | private static Object o(Map.Entry<?, ?>... fields) { |
| | | @SafeVarargs |
| | | private static Object o(Map.Entry<String, Object>... fields) { |
| | | return JsonValue.object(fields); |
| | | } |
| | | |