Skip to content

Commit 1273fe5

Browse files
committed
Merge branch '2.16' into 2.17
2 parents 8fc618b + 73d3bbd commit 1273fe5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

release-notes/VERSION-2.x

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ Project: jackson-databind
66

77
2.17.0 (not yet released)
88

9-
#4200: `JsonSetter(contentNulls = FAIL)` is ignored in delegating
10-
`@JsonCreator` argument
119
#4205: Consider types in `sun.*` package(s) to be JDK (platform) types
1210
for purposes of handling
1311
#4209: Make `BeanDeserializerModifier`/`BeanSerializerModifier`
@@ -19,6 +17,8 @@ Project: jackson-databind
1917

2018
2.16.1 (not yet released)
2119

20+
#4200: `JsonSetter(contentNulls = FAIL)` is ignored in delegating
21+
`@JsonCreator` argument
2222
#4216: Primitive array deserializer cannot being captured by `DeserializerModifier`
2323
(reported by @SakuraKoi)
2424
(fix contributed by Joo-Hyuk K)

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ private JsonDeserializer<Object> _findDelegateDeserializer(DeserializationContex
743743
* needed to find {@link PropertyMetadata} for Delegating Creator,
744744
* for access to annotation-derived info.
745745
*
746-
* @since 2.17
746+
* @since 2.16.1
747747
*/
748748
protected PropertyMetadata _getSetterInfo(DeserializationContext ctxt,
749749
AnnotatedMember accessor, JavaType type)
@@ -793,7 +793,7 @@ protected PropertyMetadata _getSetterInfo(DeserializationContext ctxt,
793793
}
794794
return metadata;
795795
}
796-
796+
797797
/**
798798
* Helper method that can be used to see if specified property is annotated
799799
* to indicate use of a converter for property value (in case of container types,

0 commit comments

Comments
 (0)