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.
AtomicReference
null
1 parent 14569fe commit 810128eCopy full SHA for 810128e
src/main/java/com/fasterxml/jackson/databind/deser/std/AtomicReferenceDeserializer.java
@@ -52,6 +52,14 @@ public Object getEmptyValue(DeserializationContext ctxt) throws JsonMappingExcep
52
return getNullValue(ctxt);
53
}
54
55
+ /**
56
+ * Let's actually NOT coerce missing Creator parameters into empty value.
57
+ */
58
+ @Override // @since 2.13
59
+ public Object getAbsentValue(DeserializationContext ctxt) throws JsonMappingException {
60
+ return null;
61
+ }
62
+
63
@Override
64
public AtomicReference<Object> referenceValue(Object contents) {
65
return new AtomicReference<Object>(contents);
0 commit comments