We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7393d98 commit 85e3787Copy full SHA for 85e3787
src/main/java/tools/jackson/module/kotlin/WrapsNullableValueClassDeserializer.java
@@ -10,8 +10,6 @@
10
import tools.jackson.databind.JavaType;
11
import tools.jackson.databind.deser.std.StdDeserializer;
12
13
-import java.io.IOException;
14
-
15
/**
16
* An interface to be inherited by JsonDeserializer that handles value classes that may wrap nullable.
17
*/
src/moditect/module-info.java
@@ -4,10 +4,11 @@
4
requires java.desktop;
5
6
requires kotlin.reflect;
7
- requires kotlin.stdlib;
+ requires transitive kotlin.stdlib;
8
9
requires com.fasterxml.jackson.annotation;
- requires tools.jackson.databind;
+ requires tools.jackson.core;
+ requires transitive tools.jackson.databind;
exports tools.jackson.module.kotlin;
0 commit comments