(int newPos)
| 219 | } |
| 220 | |
| 221 | private void extendCapacity(int newPos) { |
| 222 | if (newPos > pos) { |
| 223 | checkCapacity(newPos); |
| 224 | Arrays.fill(buffer, pos, newPos, NO_ENTRY_VALUE); |
| 225 | pos = newPos; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | private boolean replace0(int index, boolean value) { |
| 230 | boolean val = buffer[index]; |
no test coverage detected