Skip to content

Commit c3590d7

Browse files
committed
Fix #420 for 2.3
1 parent 9c412be commit c3590d7

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

release-notes/VERSION

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Project: jackson-databind
2-
Version: 2.3.2 (01-Mar-2014)
2+
Version: 2.3.3 (xx-xxx-2014)
3+
4+
#420: Remove 'final' modifier from `BeanDeserializerBase.deserializeWithType`
5+
(requested by Ghoughpteighbteau@github)
6+
7+
------------------------------------------------------------------------
8+
=== History: ===
9+
------------------------------------------------------------------------
10+
11+
2.3.2 (01-Mar-2014)
312

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

20-
------------------------------------------------------------------------
21-
=== History: ===
22-
------------------------------------------------------------------------
23-
2429
2.3.1 (28-Dec-2013)
2530

2631
#346: Fix problem deserializing `ObjectNode`, with @JsonCreator, empty JSON Object

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ public abstract Object deserializeFromObject(JsonParser jp, DeserializationConte
895895
throws IOException, JsonProcessingException;
896896

897897
@Override
898-
public final Object deserializeWithType(JsonParser jp, DeserializationContext ctxt,
898+
public Object deserializeWithType(JsonParser jp, DeserializationContext ctxt,
899899
TypeDeserializer typeDeserializer)
900900
throws IOException, JsonProcessingException
901901
{

0 commit comments

Comments
 (0)