Skip to content

Commit fa1c2ff

Browse files
committed
prune temp 2.4.6-only fix for #744 after merge
1 parent 2f7a430 commit fa1c2ff

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/main/java/com/fasterxml/jackson/databind/ObjectReader.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -1549,10 +1549,7 @@ protected JsonDeserializer<Object> _findRootDeserializer(DeserializationContext
15491549
throws JsonMappingException
15501550
{
15511551
if (_rootDeserializer != null) {
1552-
// 02-Apr-2015, tatu: Patch for #744 (better fix in 2.5.3)
1553-
if (valueType != JSON_NODE_TYPE) {
1554-
return _rootDeserializer;
1555-
}
1552+
return _rootDeserializer;
15561553
}
15571554

15581555
// Sanity check: must have actual type...

0 commit comments

Comments
 (0)