Fix ambiguous comment

This commit is contained in:
Him188 2019-12-13 12:13:48 +08:00
parent 941fcb3fdd
commit 6cc8a33cf6

View File

@ -188,7 +188,7 @@ class LockFreeLinkedList<E> : MutableList<E>, RandomAccess {
searchStartingFrom = got.nextNode
index += timesOnThisTurn
if (!got.isRemoved()) lastMatching = got // only record the lastMatching if got is not removed.
if (!got.isRemoved()) lastMatching = got //record the lastMatching only if got is not removed.
}
if (!lastMatching.isValidElementNode()) {