File tree 1 file changed +2
-2
lines changed
src/main/java/com/fasterxml/jackson/databind/util
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1162,7 +1162,7 @@ public void copyCurrentStructure(JsonParser p) throws IOException
1162
1162
t = p .nextToken ();
1163
1163
// fall-through to copy the associated value
1164
1164
} 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:
1166
1166
throw new JsonEOFException (p , null , "Unexpected end-of-input" );
1167
1167
}
1168
1168
@@ -1919,7 +1919,7 @@ private Number getNumberValue(final boolean preferBigNumbers) throws IOException
1919
1919
String str = (String ) value ;
1920
1920
final int len = str .length ();
1921
1921
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)
1923
1923
// has been verified by underlying `JsonParser`: no need to check again
1924
1924
if (preferBigNumbers
1925
1925
// 01-Feb-2023, tatu: Not really accurate but we'll err on side
You can’t perform that action at this time.
0 commit comments