We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77fd92c commit 9309439Copy full SHA for 9309439
src/main/java/com/fasterxml/jackson/core/base/ParserBase.java
@@ -1125,13 +1125,13 @@ protected void convertNumberToDouble() throws IOException
1125
1126
if ((_numTypesValid & NR_BIGDECIMAL) != 0) {
1127
if (_numberString != null) {
1128
- _numberDouble = _getNumberFloat();
+ _numberDouble = _getNumberDouble();
1129
} else {
1130
_numberDouble = _getBigDecimal().doubleValue();
1131
}
1132
} else if ((_numTypesValid & NR_BIGINT) != 0) {
1133
1134
1135
1136
_numberDouble = _getBigInteger().doubleValue();
1137
0 commit comments