mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8330178: Clean up non-standard use of /** comments in java.base
Reviewed-by: darcy, iris, dfuchs, aivanov, naoto
This commit is contained in:
parent
88a5dcead2
commit
9cc163a999
23 changed files with 78 additions and 84 deletions
|
@ -4843,7 +4843,7 @@ public class BigInteger extends Number implements Comparable<BigInteger> {
|
|||
0x40000000, 0x4cfa3cc1, 0x5c13d840, 0x6d91b519, 0x39aa400
|
||||
};
|
||||
|
||||
/**
|
||||
/*
|
||||
* These routines provide access to the two's complement representation
|
||||
* of BigIntegers.
|
||||
*/
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
|
||||
package java.math;
|
||||
|
||||
import static java.math.BigDecimal.INFLATED;
|
||||
import static java.math.BigInteger.LONG_MASK;
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* A class used to represent multiprecision integers that makes efficient
|
||||
* use of allocated space by allowing a number to occupy only part of
|
||||
|
@ -42,10 +46,6 @@ package java.math;
|
|||
* @since 1.3
|
||||
*/
|
||||
|
||||
import static java.math.BigDecimal.INFLATED;
|
||||
import static java.math.BigInteger.LONG_MASK;
|
||||
import java.util.Arrays;
|
||||
|
||||
class MutableBigInteger {
|
||||
/**
|
||||
* Holds the magnitude of this MutableBigInteger in big endian order.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue