Skip to content

Commit f211528

Browse files
committed
Update DeserializerCache.java
1 parent 651fa8c commit f211528

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/DeserializerCache.java

-3
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,6 @@ protected JsonDeserializer<Object> _createAndCacheValueDeserializer(Deserializat
255255
if (type == null) {
256256
throw new IllegalArgumentException("Null JavaType passed");
257257
}
258-
if (_hasCustomHandlers(type)) {
259-
return null;
260-
}
261258
final boolean isCustom = _hasCustomHandlers(type);
262259
JsonDeserializer<Object> deser = isCustom ? null : _cachedDeserializers.get(type);
263260
if (deser != null) {

0 commit comments

Comments
 (0)