Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Merge branch '2.10'
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jul 7, 2018
2 parents d2c083a + 799da54 commit 496e591
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Project: jackson-databind
#2060: `UnwrappingBeanPropertyWriter` incorrectly assumes the found serializer is
of type `UnwrappingBeanSerializer`
(reported by Petar T)
#2082: `FactoryBasedEnumDeserializer` should be cachable

2.9.6 (12-Jun-2018)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ public Boolean supportsUpdate(DeserializationConfig config) {
return Boolean.FALSE;
}

// since 2.9.7: should have been the case earlier but
@Override
public boolean isCachable() { return true; }

@Override
public Object deserialize(JsonParser p, DeserializationContext ctxt) throws IOException
{
Expand Down

0 comments on commit 496e591

Please sign in to comment.