Skip to content

Commit

Permalink
Update DeserializerCache.java
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Mar 28, 2024
1 parent dcc1f0b commit 3bcdd55
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,6 @@ protected JsonDeserializer<Object> _createAndCacheValueDeserializer(Deserializat
if (type == null) {
throw new IllegalArgumentException("Null JavaType passed");
}
if (_hasCustomHandlers(type)) {
return null;
}
final boolean isCustom = _hasCustomHandlers(type);
JsonDeserializer<Object> deser = isCustom ? null : _cachedDeserializers.get(type);
if (deser != null) {
Expand Down

0 comments on commit 3bcdd55

Please sign in to comment.