Skip to content

Commit 1ed23f2

Browse files
committed
update since comments to 2.19
1 parent d01aee2 commit 1ed23f2

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ public final Object deserializeWith(JsonParser p, DeserializationContext ctxt,
588588
/**
589589
* Returns a copy of this property, unwrapped using the given {@link NameTransformer}.
590590
*
591-
* @since 1.18
591+
* @since 1.19
592592
*/
593593
public SettableBeanProperty unwrapped(NameTransformer xf)
594594
{

src/main/java/com/fasterxml/jackson/databind/deser/impl/BeanPropertyMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ public String toString()
714714
*/
715715

716716
/**
717-
* @deprecated since 1.18 in favor of {@link SettableBeanProperty#unwrapped(NameTransformer)}
717+
* @deprecated since 1.19 in favor of {@link SettableBeanProperty#unwrapped(NameTransformer)}
718718
*/
719719
@Deprecated
720720
protected SettableBeanProperty _rename(SettableBeanProperty prop, NameTransformer xf) {

src/main/java/com/fasterxml/jackson/databind/deser/impl/PropertyBasedCreator.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected PropertyBasedCreator(DeserializationContext ctxt,
9595
}
9696

9797
/**
98-
* @since 2.18
98+
* @since 2.19
9999
*/
100100
protected PropertyBasedCreator(
101101
int propertyCount,
@@ -179,7 +179,7 @@ public static PropertyBasedCreator construct(DeserializationContext ctxt,
179179
* Mutant factory method for constructing a map where the names of all properties
180180
* are transformed using the given {@link NameTransformer}.
181181
*
182-
* @since 1.18
182+
* @since 1.19
183183
*/
184184
public PropertyBasedCreator renameAll(NameTransformer transformer)
185185
{

src/main/java/com/fasterxml/jackson/databind/deser/impl/UnwrappedPropertyHandler.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
public class UnwrappedPropertyHandler
2020
{
2121
/**
22-
* @since 2.18
22+
* @since 2.19
2323
*/
2424
protected final List<SettableBeanProperty> _creatorProperties;
2525
protected final List<SettableBeanProperty> _properties;
@@ -29,7 +29,7 @@ public UnwrappedPropertyHandler() {
2929
_properties = new ArrayList<>();
3030
}
3131

32-
@Deprecated // since 2.18
32+
@Deprecated // since 2.19
3333
protected UnwrappedPropertyHandler(List<SettableBeanProperty> props) {
3434
this(new ArrayList<>(), props);
3535
}
@@ -40,7 +40,7 @@ protected UnwrappedPropertyHandler(List<SettableBeanProperty> creatorProps, List
4040
}
4141

4242
/**
43-
* @since 2.18
43+
* @since 2.19
4444
*/
4545
public void addCreatorProperty(SettableBeanProperty property) {
4646
_creatorProperties.add(property);
@@ -74,7 +74,7 @@ private List<SettableBeanProperty> renameProperties(
7474
}
7575

7676
/**
77-
* @since 2.18
77+
* @since 2.19
7878
*/
7979
public PropertyValueBuffer processUnwrappedCreatorProperties(
8080
JsonParser originalParser,
@@ -108,7 +108,7 @@ public Object processUnwrapped(JsonParser originalParser, DeserializationContext
108108
* Generates a placeholder name for creator properties that don't have a name,
109109
* but are marked with `@JsonWrapped` annotation.
110110
*
111-
* @since 2.18
111+
* @since 2.19
112112
*/
113113
public static PropertyName creatorParamName(int index) {
114114
return new PropertyName("@JsonUnwrapped/" + index);

0 commit comments

Comments
 (0)