Skip to content

Commit 2a96fda

Browse files
committed
javadoc warnings cleanup
1 parent 0b6a711 commit 2a96fda

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

datetime/src/main/java/com/fasterxml/jackson/datatype/jsr310/deser/JSR310DateTimeDeserializerBase.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,11 @@ public abstract class JSR310DateTimeDeserializerBase<T>
2828

2929
/**
3030
* Setting that indicates the {@Link JsonFormat.Shape} specified for this deserializer
31-
* as a {@link JsonFormat.Shape} annotation on property or class, or due to per-type
32-
* "config override", or from global settings:
31+
* as a {@link com.fasterxml.jackson.annotation.JsonFormat.Shape} annotation on
32+
* property or class, or due to per-type "config override", or from global settings:
3333
* If Shape is NUMBER_INT, the input value is considered to be epoch days. If not a
3434
* NUMBER_INT, and the deserializer was not specified with the leniency setting of true,
3535
* then an exception will be thrown.
36-
* @see [jackson-modules-java8#58] for more info
3736
*
3837
* @since 2.11
3938
*/

datetime/src/main/java/com/fasterxml/jackson/datatype/jsr310/deser/JSR310DeserializerBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ abstract class JSR310DeserializerBase<T> extends StdScalarDeserializer<T>
4343

4444
/**
4545
* Flag that indicates what leniency setting is enabled for this deserializer (either
46-
* due {@link JsonFormat} annotation on property or class, or due to per-type
46+
* due {@link com.fasterxml.jackson.annotation.JsonFormat.Shape} annotation on property or class, or due to per-type
4747
* "config override", or from global settings): leniency/strictness has effect
4848
* on accepting some non-default input value representations (such as integer values
4949
* for dates).

datetime/src/main/java/com/fasterxml/jackson/datatype/jsr310/ser/JSR310FormattedSerializerBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ abstract class JSR310FormattedSerializerBase<T>
6161
/**
6262
* Specific format to use, if not default format: non null value
6363
* also indicates that serialization is to be done as JSON String,
64-
* not numeric timestamp, unless {@link #_useTimestamp} is true.
64+
* not numeric timestamp, unless {@code #_useTimestamp} is true.
6565
*/
6666
protected final DateTimeFormatter _formatter;
6767

0 commit comments

Comments
 (0)