Skip to content

Commit 73b79b9

Browse files
committed
Fix #656 for 2.3
1 parent 9ca1387 commit 73b79b9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

release-notes/VERSION

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
Project: jackson-databind
22
Version: 2.3.5 (xx-xxx-2014)
33

4-
#543: Problems resolving self-referential generic types.
54
#496: Wrong result for TextNode("false").asBoolean(true)
65
(reported by Ivar R, ivarru@github)
6+
#543: Problems resolving self-referential generic types.
7+
#656: defaultImpl configuration is ignored for WRAPPER_OBJECT
78

89
------------------------------------------------------------------------
910
=== History: ===

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/AsWrapperTypeDeserializer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class AsWrapperTypeDeserializer
2626
public AsWrapperTypeDeserializer(JavaType bt, TypeIdResolver idRes,
2727
String typePropertyName, boolean typeIdVisible, Class<?> defaultImpl)
2828
{
29-
super(bt, idRes, typePropertyName, typeIdVisible, null);
29+
super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl);
3030
}
3131

3232
protected AsWrapperTypeDeserializer(AsWrapperTypeDeserializer src, BeanProperty property) {

0 commit comments

Comments
 (0)