Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 4, 2023
1 parent c047b4f commit 469374a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/tools/jackson/core/base/ParserBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ protected void convertNumberToBigInteger()
_numTypesValid |= NR_BIGINT;
}

protected void convertNumberToDouble() throws InputCoercionException
protected void convertNumberToDouble()
{
/* 05-Aug-2008, tatus: Important note: this MUST start with
* more accurate representations, since we don't know which
Expand Down Expand Up @@ -929,7 +929,7 @@ protected void convertNumberToBigDecimal()
}

// @since 2.15
protected BigInteger _convertBigDecimalToBigInteger(BigDecimal bigDec) throws IOException {
protected BigInteger _convertBigDecimalToBigInteger(BigDecimal bigDec) {
// 04-Apr-2022, tatu: wrt [core#968] Need to limit max scale magnitude
return bigDec.toBigInteger();
}
Expand Down

0 comments on commit 469374a

Please sign in to comment.