Skip to content

Commit

Permalink
Fix #420 for 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 5, 2014
1 parent 9c412be commit c3590d7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
Project: jackson-databind
Version: 2.3.2 (01-Mar-2014)
Version: 2.3.3 (xx-xxx-2014)

#420: Remove 'final' modifier from `BeanDeserializerBase.deserializeWithType`
(requested by Ghoughpteighbteau@github)

------------------------------------------------------------------------
=== History: ===
------------------------------------------------------------------------

2.3.2 (01-Mar-2014)

#378: Fix a problem with custom enum deserializer construction
(reported by BokoEnos@github)
Expand All @@ -17,10 +26,6 @@ Version: 2.3.2 (01-Mar-2014)
- Added `BeanSerializerBase._serializeObjectId()` needed by modules that
override standard BeanSerializer; specifically, XML module.

------------------------------------------------------------------------
=== History: ===
------------------------------------------------------------------------

2.3.1 (28-Dec-2013)

#346: Fix problem deserializing `ObjectNode`, with @JsonCreator, empty JSON Object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ public abstract Object deserializeFromObject(JsonParser jp, DeserializationConte
throws IOException, JsonProcessingException;

@Override
public final Object deserializeWithType(JsonParser jp, DeserializationContext ctxt,
public Object deserializeWithType(JsonParser jp, DeserializationContext ctxt,
TypeDeserializer typeDeserializer)
throws IOException, JsonProcessingException
{
Expand Down

0 comments on commit c3590d7

Please sign in to comment.