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 728619f commit 08b1d5dCopy full SHA for 08b1d5d
cbor/src/main/java/com/fasterxml/jackson/dataformat/cbor/CBORParser.java
@@ -3365,7 +3365,7 @@ private final BigInteger _bigPositive(long l) {
3365
}
3366
3367
private final BigInteger _bigNegative(long l) {
3368
- // 03-Dec-2017, tatu: [dataformats-binary#149] Careful with overflow
+ // 03-Dec-2017, tatu: [dataformats-binary#124] Careful with overflow
3369
BigInteger unsignedBase = _bigPositive(l);
3370
return unsignedBase.negate().subtract(BigInteger.ONE);
3371
0 commit comments