You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was iterating through a HashMap with a cursor and called the setValue(V) method to replace the current value. The new value was set in the vals[] array but did not replaced the curValue.
MutableLHashSeparateKVIntObjMapGO.java
@Override
public void setValue(V value) {
if (curKey != free) {
if (expectedModCount == modCount()) {
vals[index] = value;
if (vals != values) {
values[index] = value;
}
} else {
throw new java.util.ConcurrentModificationException();
}
} else {
throw new java.lang.IllegalStateException();
}
}
The text was updated successfully, but these errors were encountered:
I was iterating through a HashMap with a cursor and called the setValue(V) method to replace the current value. The new value was set in the vals[] array but did not replaced the curValue.
MutableLHashSeparateKVIntObjMapGO.java
The text was updated successfully, but these errors were encountered: