We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895c144 commit 6fe78e0Copy full SHA for 6fe78e0
1 file changed
java/src/main/java/io/cucumber/messages/ndjson/Jackson.java
@@ -13,7 +13,7 @@
13
import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_ABSENT;
14
15
final class Jackson {
16
- public static final JsonMapper OBJECT_MAPPER = JsonMapper.builder()
+ static final JsonMapper OBJECT_MAPPER = JsonMapper.builder()
17
.addModule(new Jdk8Module())
18
.addModule(new ParameterNamesModule(Mode.PROPERTIES))
19
.defaultPropertyInclusion(Value.construct(NON_ABSENT, NON_ABSENT))
@@ -26,6 +26,7 @@ final class Jackson {
26
.build();
27
28
private Jackson() {
29
+ /* no-op */
30
}
31
32
0 commit comments