We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41b4af commit 549e857Copy full SHA for 549e857
src/test/java/com/fasterxml/jackson/databind/deser/std/CollectionDeserializer5139Test.java
@@ -42,7 +42,7 @@ public void nullsSkipTest() throws JsonProcessingException {
42
ObjectMapper mapper = new ObjectMapper();
43
mapper.configOverride(List.class).setSetterInfo(JsonSetter.Value.forContentNulls(Nulls.SKIP));
44
45
- Dst dst = mapper.readValue("{\"list\":[\"\"]}", new TypeReference<>() {});
+ Dst dst = mapper.readValue("{\"list\":[\"\"]}", new TypeReference<Dst>() {});
46
47
assertTrue(dst.getList().isEmpty());
48
}
0 commit comments