Skip to content

Commit 08b1d5d

Browse files
jobarr-amzncowtowncoder
authored andcommitted
Reference to #149 in CBORParser should be #124
#124 relates to a CBOR invalid integer value issue, whereas #149 is about polymorphic Ion serialization.
1 parent 728619f commit 08b1d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cbor/src/main/java/com/fasterxml/jackson/dataformat/cbor/CBORParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3365,7 +3365,7 @@ private final BigInteger _bigPositive(long l) {
33653365
}
33663366

33673367
private final BigInteger _bigNegative(long l) {
3368-
// 03-Dec-2017, tatu: [dataformats-binary#149] Careful with overflow
3368+
// 03-Dec-2017, tatu: [dataformats-binary#124] Careful with overflow
33693369
BigInteger unsignedBase = _bigPositive(l);
33703370
return unsignedBase.negate().subtract(BigInteger.ONE);
33713371
}

0 commit comments

Comments
 (0)