1
1
Fork 0

non-blocking ArrayList fix

This commit is contained in:
Yuriy Kiselev 2023-04-11 23:50:03 +03:00 committed by Enchased Horse
parent 2a49782f20
commit a303da3a70
1 changed files with 1 additions and 1 deletions

View File

@ -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) {