File tree 2 files changed +5
-1
lines changed
src/main/java/com/fasterxml/jackson/databind
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ Project: jackson-databind
130
130
131
131
#735: (complete fix) @JsonDeserialize on Map with contentUsing custom deserializer overwrites default behavior
132
132
(reported by blackfyre512@github) (regression due to #604)
133
+ $744: Custom deserializer with parent object update fails
133
134
134
135
2.4.5.1 (26-Mar-2015)
135
136
Original file line number Diff line number Diff line change @@ -1549,7 +1549,10 @@ protected JsonDeserializer<Object> _findRootDeserializer(DeserializationContext
1549
1549
throws JsonMappingException
1550
1550
{
1551
1551
if (_rootDeserializer != null ) {
1552
- return _rootDeserializer ;
1552
+ // 02-Apr-2015, tatu: Patch for #744 (better fix in 2.5.3)
1553
+ if (valueType != JSON_NODE_TYPE ) {
1554
+ return _rootDeserializer ;
1555
+ }
1553
1556
}
1554
1557
1555
1558
// Sanity check: must have actual type...
You can’t perform that action at this time.
0 commit comments