Skip to content

Commit

Permalink
Fix #656 for 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 17, 2014
1 parent 9ca1387 commit 73b79b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion release-notes/VERSION
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Project: jackson-databind
Version: 2.3.5 (xx-xxx-2014)

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

------------------------------------------------------------------------
=== History: ===
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 73b79b9

Please sign in to comment.