(int bitLength)
| 38 | } |
| 39 | |
| 40 | public BitSet(int bitLength) { |
| 41 | if (bitLength % BITS_PER_LONG == 0) { |
| 42 | enlarge(longPosition(bitLength)); |
| 43 | } else { |
| 44 | enlarge(longPosition(bitLength) + 1); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | public BitSet() { |
| 49 | enlarge(1); |
nothing calls this directly
no test coverage detected