Skip to content

Commit

Permalink
Reference to #149 in CBORParser should be #124
Browse files Browse the repository at this point in the history
#124 relates to a CBOR invalid integer value issue, whereas #149 is about polymorphic Ion serialization.
  • Loading branch information
jobarr-amzn authored and cowtowncoder committed Nov 30, 2020
1 parent 728619f commit 08b1d5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3365,7 +3365,7 @@ private final BigInteger _bigPositive(long l) {
}

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

0 comments on commit 08b1d5d

Please sign in to comment.