We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1976c0d + ed846d9 commit 85340aaCopy full SHA for 85340aa
release-notes/VERSION-2.x
@@ -55,6 +55,8 @@ JSON library.
55
padding character
56
(reported by @Vity01)
57
#967: Address performance issue with `BigDecimalParser`
58
+#990: Backport removal of BigDecimal to BigInt conversion (#987)
59
+ (contributed by @pjfanning)
60
61
2.14.2 (28-Jan-2023)
62
src/test/java/com/fasterxml/jackson/core/io/TestNumberInput.java
@@ -62,5 +62,15 @@ public void testParseBigIntegerFailsWithENotation()
// expected
63
}
64
65
+
66
+ public void testParseBigIntegerFailsWithENotation()
67
+ {
68
+ try {
69
+ NumberInput.parseBigInteger("1e10");
70
+ fail("expected NumberFormatException");
71
+ } catch (NumberFormatException nfe) {
72
+ // expected
73
+ }
74
75
76
0 commit comments