Skip to content

Commit

Permalink
update since comments to 2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
fxshlein committed Sep 3, 2024
1 parent d01aee2 commit 1ed23f2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ public final Object deserializeWith(JsonParser p, DeserializationContext ctxt,
/**
* Returns a copy of this property, unwrapped using the given {@link NameTransformer}.
*
* @since 1.18
* @since 1.19
*/
public SettableBeanProperty unwrapped(NameTransformer xf)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ public String toString()
*/

/**
* @deprecated since 1.18 in favor of {@link SettableBeanProperty#unwrapped(NameTransformer)}
* @deprecated since 1.19 in favor of {@link SettableBeanProperty#unwrapped(NameTransformer)}
*/
@Deprecated
protected SettableBeanProperty _rename(SettableBeanProperty prop, NameTransformer xf) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ protected PropertyBasedCreator(DeserializationContext ctxt,
}

/**
* @since 2.18
* @since 2.19
*/
protected PropertyBasedCreator(
int propertyCount,
Expand Down Expand Up @@ -179,7 +179,7 @@ public static PropertyBasedCreator construct(DeserializationContext ctxt,
* Mutant factory method for constructing a map where the names of all properties
* are transformed using the given {@link NameTransformer}.
*
* @since 1.18
* @since 1.19
*/
public PropertyBasedCreator renameAll(NameTransformer transformer)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class UnwrappedPropertyHandler
{
/**
* @since 2.18
* @since 2.19
*/
protected final List<SettableBeanProperty> _creatorProperties;
protected final List<SettableBeanProperty> _properties;
Expand All @@ -29,7 +29,7 @@ public UnwrappedPropertyHandler() {
_properties = new ArrayList<>();
}

@Deprecated // since 2.18
@Deprecated // since 2.19
protected UnwrappedPropertyHandler(List<SettableBeanProperty> props) {
this(new ArrayList<>(), props);
}
Expand All @@ -40,7 +40,7 @@ protected UnwrappedPropertyHandler(List<SettableBeanProperty> creatorProps, List
}

/**
* @since 2.18
* @since 2.19
*/
public void addCreatorProperty(SettableBeanProperty property) {
_creatorProperties.add(property);
Expand Down Expand Up @@ -74,7 +74,7 @@ private List<SettableBeanProperty> renameProperties(
}

/**
* @since 2.18
* @since 2.19
*/
public PropertyValueBuffer processUnwrappedCreatorProperties(
JsonParser originalParser,
Expand Down Expand Up @@ -108,7 +108,7 @@ public Object processUnwrapped(JsonParser originalParser, DeserializationContext
* Generates a placeholder name for creator properties that don't have a name,
* but are marked with `@JsonWrapped` annotation.
*
* @since 2.18
* @since 2.19
*/
public static PropertyName creatorParamName(int index) {
return new PropertyName("@JsonUnwrapped/" + index);
Expand Down

0 comments on commit 1ed23f2

Please sign in to comment.