Skip to content

Commit 506d4c9

Browse files
committed
Add explicit link reference to jackson-core.
JDK8 will have a javadoc error otherwise. Also update the version of the databind javadoc links.
1 parent 0c2f7c4 commit 506d4c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

project.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ javadoc {
5050
}
5151
links("https://docs.oracle.com/javase/7/docs/api/");
5252
links("https://www.javadoc.io/doc/com.google.code.findbugs/jsr305/3.0.1/");
53-
links("https://fasterxml.github.io/jackson-databind/javadoc/2.2.0/");
53+
links("https://fasterxml.github.io/jackson-databind/javadoc/2.9/");
5454
links("https://www.javadoc.io/doc/com.google.guava/guava/28.1-android/");
5555
links("https://java-json-tools.github.io/msg-simple/");
5656
}

src/main/java/com/github/fge/jackson/JacksonUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public static String prettyPrint(final JsonNode node)
142142
*
143143
* <ul>
144144
* <li>{@link DeserializationFeature#USE_BIG_DECIMAL_FOR_FLOATS};</li>
145-
* <li>{@link JsonGenerator.Feature#WRITE_BIGDECIMAL_AS_PLAIN};</li>
145+
* <li>{@link com.fasterxml.jackson.core.JsonGenerator.Feature#WRITE_BIGDECIMAL_AS_PLAIN};</li>
146146
* <li>{@link SerializationFeature#INDENT_OUTPUT}.</li>
147147
* </ul>
148148
*

0 commit comments

Comments
 (0)