Skip to content

Commit 85e3787

Browse files
committed
Minor clean up (unused import, changes to module-info)
1 parent 7393d98 commit 85e3787

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/main/java/tools/jackson/module/kotlin/WrapsNullableValueClassDeserializer.java

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
import tools.jackson.databind.JavaType;
1111
import tools.jackson.databind.deser.std.StdDeserializer;
1212

13-
import java.io.IOException;
14-
1513
/**
1614
* An interface to be inherited by JsonDeserializer that handles value classes that may wrap nullable.
1715
*/

src/moditect/module-info.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
requires java.desktop;
55

66
requires kotlin.reflect;
7-
requires kotlin.stdlib;
7+
requires transitive kotlin.stdlib;
88

99
requires com.fasterxml.jackson.annotation;
10-
requires tools.jackson.databind;
10+
requires tools.jackson.core;
11+
requires transitive tools.jackson.databind;
1112

1213
exports tools.jackson.module.kotlin;
1314

0 commit comments

Comments
 (0)