We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775063a commit 9d7a77cCopy full SHA for 9d7a77c
src/main/java/gr/geompokon/bitarray/BitArray.java
@@ -198,7 +198,6 @@ public Boolean get(int index) {
198
public Boolean set(int index, Boolean bit) {
199
Objects.requireNonNull(bit);
200
ensureIndexInRange(index, elements - 1);
201
- modCount++;
202
// get bit indices
203
int longIndex = getLongIndex(index);
204
int indexInLong = getIndexInLong(index);
0 commit comments