Skip to content

Commit

Permalink
Fix #656 for 2.4 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 17, 2014
1 parent b07c152 commit 7ec59e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Project: jackson-databind

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

2.4.4 (24-Nov-2014)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class AsWrapperTypeDeserializer
public AsWrapperTypeDeserializer(JavaType bt, TypeIdResolver idRes,
String typePropertyName, boolean typeIdVisible, Class<?> defaultImpl)
{
super(bt, idRes, typePropertyName, typeIdVisible, null);
super(bt, idRes, typePropertyName, typeIdVisible, defaultImpl);
}

protected AsWrapperTypeDeserializer(AsWrapperTypeDeserializer src, BeanProperty property) {
Expand Down

0 comments on commit 7ec59e4

Please sign in to comment.