Skip to content

Commit 7ec59e4

Browse files
committed
Fix #656 for 2.4 as well
1 parent b07c152 commit 7ec59e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: release-notes/VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Project: jackson-databind
88

99
#635: Reduce cachability of `Map` deserializers, to avoid problems with per-property config changes
1010
(regression due to #604)
11+
#656: `defaultImpl` configuration is ignored for `WRAPPER_OBJECT`
1112
- Solve potential cyclic-resolution problem for `UntypedObjectDeserializer`
1213

1314
2.4.4 (24-Nov-2014)

Diff for: 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)