Skip to content

Commit e62d20a

Browse files
committed
Fix year number (2024->2023) in comments
1 parent 1ea3b5f commit e62d20a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/util/TokenBuffer.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ public void copyCurrentStructure(JsonParser p) throws IOException
11621162
t = p.nextToken();
11631163
// fall-through to copy the associated value
11641164
} else if (t == null) {
1165-
// 13-Dec-2024, tatu: For some unexpected EOF cases we may end up here, so:
1165+
// 13-Dec-2023, tatu: For some unexpected EOF cases we may end up here, so:
11661166
throw new JsonEOFException(p, null, "Unexpected end-of-input");
11671167
}
11681168

@@ -1919,7 +1919,7 @@ private Number getNumberValue(final boolean preferBigNumbers) throws IOException
19191919
String str = (String) value;
19201920
final int len = str.length();
19211921
if (_currToken == JsonToken.VALUE_NUMBER_INT) {
1922-
// 08-Dec-2024, tatu: Note -- deferred numbers' validity (wrt input token)
1922+
// 08-Dec-2023, tatu: Note -- deferred numbers' validity (wrt input token)
19231923
// has been verified by underlying `JsonParser`: no need to check again
19241924
if (preferBigNumbers
19251925
// 01-Feb-2023, tatu: Not really accurate but we'll err on side

0 commit comments

Comments
 (0)