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.
getAbsentValue()
1 parent 7a29c98 commit 14569feCopy full SHA for 14569fe
src/main/java/com/fasterxml/jackson/databind/deser/std/ReferenceTypeDeserializer.java
@@ -126,10 +126,12 @@ public Object getEmptyValue(DeserializationContext ctxt) throws JsonMappingExcep
126
return getNullValue(ctxt);
127
}
128
129
- @Override
130
- public Object getAbsentValue(DeserializationContext ctxt) throws JsonMappingException {
131
- return null;
132
- }
+ // 02-Sep-2021, tatu: Related to [databind#3214] we may want to add this... but
+ // with 2.13.0 so close will not yet do that, but wait for 2.14
+// @Override
+// public Object getAbsentValue(DeserializationContext ctxt) throws JsonMappingException {
133
+// return null;
134
+// }
135
136
public abstract T referenceValue(Object contents);
137
0 commit comments