Skip to content

Commit 25e1135

Browse files
committed
Add release notes for #5069
1 parent 3d4c040 commit 25e1135

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: release-notes/VERSION-2.x

+2
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ Project: jackson-databind
8383
(contributed by @pjfanning)
8484
#5052: Minor bug in `FirstCharBasedValidator.forFirstNameRule()`: returns `null`
8585
in non-default case
86+
#5069: Add copy-constructor for `MappingIterator`
87+
(contributed by @wrongwrong)
8688
8789
2.18.3 (28-Feb-2025)
8890

Diff for: src/main/java/com/fasterxml/jackson/databind/MappingIterator.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ protected MappingIterator(JavaType type, JsonParser p, DeserializationContext ct
164164

165165
/**
166166
* Copy-constructor that sub-classes can use when creating new instances
167-
* by fluent-style construction
167+
* by fluent-style construction.
168+
*
169+
* @since 2.19
168170
*/
169171
protected MappingIterator(MappingIterator<T> src) {
170172
this(src._type, src._parser, src._context, src._deserializer, src._closeParser, src._updatedValue);

0 commit comments

Comments
 (0)