non-blocking ArrayList fix
This commit is contained in:
parent
2a49782f20
commit
a303da3a70
|
@ -908,7 +908,7 @@ class NonBlockingArrayList<T> {
|
|||
if (item == null) {
|
||||
needsModification = content[index] != null;
|
||||
} else {
|
||||
needsModification = item.equals(content[index]);
|
||||
needsModification = !item.equals(content[index]);
|
||||
}
|
||||
}
|
||||
if (needsModification) {
|
||||
|
|
Loading…
Reference in New Issue