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