8286363: BigInteger.parallelMultiply missing @since 19

Reviewed-by: alanb, darcy
This commit is contained in:
Brian Burkhalter 2022-05-10 15:30:38 +00:00
parent fa25733d76
commit 04bba07d65

View file

@ -1605,6 +1605,7 @@ public class BigInteger extends Number implements Comparable<BigInteger> {
* @param val value to be multiplied by this BigInteger.
* @return {@code this * val}
* @see #multiply
* @since 19
*/
public BigInteger parallelMultiply(BigInteger val) {
return multiply(val, false, true, 0);