mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1' into trunk
This commit is contained in:
commit
81c93084ba
|
|
@ -153,10 +153,10 @@ public class DynamicList<E>
|
|||
public void remove(Node<E> node)
|
||||
{
|
||||
lock.writeLock().lock();
|
||||
assert node.value != null;
|
||||
node.value = null;
|
||||
try
|
||||
{
|
||||
assert node.value != null;
|
||||
size--;
|
||||
|
||||
// go up through each level in the skip list, unlinking this node; this entails
|
||||
|
|
|
|||
Loading…
Reference in New Issue