Skip to content

Commit 3cd0b8c

Browse files
committed
Merge branch '2.13' into 2.14
2 parents 4801ab0 + a7572d3 commit 3cd0b8c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

release-notes/VERSION-2.x

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ Project: jackson-databind
1616
JSON `null` values on reading
1717
#3445: Do not strip generic type from `Class<C>` when resolving `JavaType`
1818
(contributed by Jan J)
19-
#3450: DeserializationProblemHandler is not working with wrapper type
20-
when returning null
21-
(reported by LJeanneau@github)
2219

2320
2.13.3 (not yet released)
2421

@@ -27,6 +24,9 @@ Project: jackson-databind
2724
(contributed by Gary M)
2825
#3446: `java.lang.StringBuffer` cannot be deserialized
2926
(reported by Lolf1010@github)
27+
#3450: DeserializationProblemHandler is not working with wrapper type
28+
when returning null
29+
(reported by LJeanneau@github)
3030

3131
2.13.2.2 (28-Mar-2022)
3232

src/main/java/com/fasterxml/jackson/databind/deser/std/StdDeserializer.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -754,8 +754,7 @@ protected final int _parseIntPrimitive(DeserializationContext ctxt, String text)
754754
{
755755
try {
756756
if (text.length() > 9) {
757-
// NOTE! Can NOT call "NumberInput.parseLong()" due to lack of validation there
758-
long l = Long.parseLong(text);
757+
long l = NumberInput.parseLong(text);
759758
if (_intOverflow(l)) {
760759
Number v = (Number) ctxt.handleWeirdStringValue(Integer.TYPE, text,
761760
"Overflow: numeric value (%s) out of range of int (%d -%d)",

0 commit comments

Comments
 (0)