Commit 6cc8a33c authored by Him188's avatar Him188

Fix ambiguous comment

parent 941fcb3f
...@@ -188,7 +188,7 @@ class LockFreeLinkedList<E> : MutableList<E>, RandomAccess { ...@@ -188,7 +188,7 @@ class LockFreeLinkedList<E> : MutableList<E>, RandomAccess {
searchStartingFrom = got.nextNode searchStartingFrom = got.nextNode
index += timesOnThisTurn 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()) { if (!lastMatching.isValidElementNode()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment