File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,20 +11,20 @@ import kotlin.reflect.KParameter
11
11
* parameter was missing or null.
12
12
*/
13
13
@Deprecated(
14
- " It is recommended that MismatchedInputException be referenced when possible," +
15
- " as the change is discussed for 2.17 and later." +
14
+ " It is recommended that InvalidNullException be referenced when possible," +
15
+ " as the change is discussed for 2.20 and later." +
16
16
" See #617 for details." ,
17
17
ReplaceWith (
18
- " MismatchedInputException " ,
19
- " com.fasterxml.jackson.databind.exc.MismatchedInputException "
18
+ " InvalidNullException " ,
19
+ " com.fasterxml.jackson.databind.exc.InvalidNullException "
20
20
),
21
21
DeprecationLevel .WARNING
22
22
)
23
23
// When deserialized by the JDK, the parameter property will be null, ignoring nullability.
24
24
// This is a temporary workaround for #572 and we will eventually remove this class.
25
25
class MissingKotlinParameterException (
26
26
@property:Deprecated(
27
- "KParameter is not serializable and will be removed in 2.17 or later. See #572 for details.",
27
+ "KParameter is not serializable and will be removed in 2.20 or later. See #572 for details.",
28
28
level = DeprecationLevel .WARNING
29
29
)
30
30
@Transient
You can’t perform that action at this time.
0 commit comments