Skip to content

Commit

Permalink
Merge branch '2.14' into 2.15
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 17, 2023
2 parents 1976c0d + ed846d9 commit 85340aa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ JSON library.
padding character
(reported by @Vity01)
#967: Address performance issue with `BigDecimalParser`
#990: Backport removal of BigDecimal to BigInt conversion (#987)
(contributed by @pjfanning)

2.14.2 (28-Jan-2023)

Expand Down
10 changes: 10 additions & 0 deletions src/test/java/com/fasterxml/jackson/core/io/TestNumberInput.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,15 @@ public void testParseBigIntegerFailsWithENotation()
// expected
}
}

public void testParseBigIntegerFailsWithENotation()
{
try {
NumberInput.parseBigInteger("1e10");
fail("expected NumberFormatException");
} catch (NumberFormatException nfe) {
// expected
}
}
}

0 comments on commit 85340aa

Please sign in to comment.