Skip to content

Commit 2e11f0c

Browse files
committed
warnings cleanup
1 parent 9ab0734 commit 2e11f0c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/main/java/com/fasterxml/jackson/core/base/GeneratorBase.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public abstract class GeneratorBase extends JsonGenerator
7272
/**
7373
* Flag set to indicate that implicit conversion from number
7474
* to JSON String is needed (as per
75-
* {@link com.fasterxml.jackson.core.JsonGenerator.Feature#WRITE_NUMBERS_AS_STRINGS}).
75+
* {@link com.fasterxml.jackson.core.json.JsonWriteFeature#WRITE_NUMBERS_AS_STRINGS}).
7676
*/
7777
protected boolean _cfgNumbersAsStrings;
7878

src/main/java/com/fasterxml/jackson/core/base/ParserBase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import java.util.Arrays;
77

88
import com.fasterxml.jackson.core.*;
9-
import com.fasterxml.jackson.core.JsonParser.Feature;
109
import com.fasterxml.jackson.core.io.IOContext;
1110
import com.fasterxml.jackson.core.io.NumberInput;
1211
import com.fasterxml.jackson.core.json.DupDetector;
@@ -1083,7 +1082,8 @@ protected char _handleUnrecognizedCharacterEscape(char ch) throws JsonProcessing
10831082
/**
10841083
* Method called to report a problem with unquoted control character.
10851084
* Note: it is possible to suppress some instances of
1086-
* exception by enabling {@link Feature#ALLOW_UNQUOTED_CONTROL_CHARS}.
1085+
* exception by enabling
1086+
* {@link com.fasterxml.jackson.core.json.JsonReadFeature#ALLOW_UNESCAPED_CONTROL_CHARS}.
10871087
*/
10881088
@SuppressWarnings("deprecation")
10891089
protected void _throwUnquotedSpace(int i, String ctxtDesc) throws JsonParseException {

src/main/java/com/fasterxml/jackson/core/base/ParserMinimalBase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ protected void reportInvalidNumber(String msg) throws JsonParseException {
551551

552552
/**
553553
* Method called to throw an exception for integral (not floating point) input
554-
* token with value outside of Java signed 32-bit range when requested as {@link int}.
554+
* token with value outside of Java signed 32-bit range when requested as {@code int}.
555555
* Result will be {@link InputCoercionException} being thrown.
556556
*/
557557
protected void reportOverflowInt() throws IOException {
@@ -572,7 +572,7 @@ protected void reportOverflowInt(String numDesc, JsonToken inputType) throws IOE
572572

573573
/**
574574
* Method called to throw an exception for integral (not floating point) input
575-
* token with value outside of Java signed 64-bit range when requested as {@link long}.
575+
* token with value outside of Java signed 64-bit range when requested as {@code long}.
576576
* Result will be {@link InputCoercionException} being thrown.
577577
*/
578578
protected void reportOverflowLong() throws IOException {

0 commit comments

Comments
 (0)