Skip to content

Commit f47b7b3

Browse files
committed
Minor javadoc/deprecation fix
1 parent dfafdde commit f47b7b3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/DeserializationContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ public final Object findInjectableValue(Object valueId,
483483
}
484484

485485
/**
486-
* @deprecated in 2.20
486+
* @deprecated in 2.20 Use non-deprecated variant instead.
487487
*/
488488
@Deprecated // since 2.20
489489
public final Object findInjectableValue(Object valueId,

src/main/java/com/fasterxml/jackson/databind/InjectableValues.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ public abstract class InjectableValues
2525
* if available; null if bean has not yet been constructed.
2626
* @param optional Flag used for configuring the behavior when the value
2727
* to inject is not found
28+
*
29+
* @since 2.20
2830
*/
2931
public Object findInjectableValue(DeserializationContext ctxt,
3032
Object valueId, BeanProperty forProperty, Object beanInstance,
@@ -36,7 +38,7 @@ public Object findInjectableValue(DeserializationContext ctxt,
3638
}
3739

3840
/**
39-
* @deprecated in 2.20
41+
* @deprecated in 2.20 Use non-deprecated method instead
4042
*/
4143
@Deprecated // since 2.20
4244
public abstract Object findInjectableValue(Object valueId, DeserializationContext ctxt,

0 commit comments

Comments
 (0)