fix issue with vvector handling in ORSet.mergeRemoveDelta #22890

This commit is contained in:
gosubpl 2017-09-25 16:16:20 +02:00 committed by Johan Andrén
parent 12196d674e
commit 9d7b81f11c
2 changed files with 16 additions and 1 deletions

View file

@ -463,7 +463,8 @@ final class ORSet[A] private[akka] (
elementsMap
}
clearAncestor()
val newVvector = vvector.merge(that.vvector)
val newVvector = vvector.merge(thatDot)
new ORSet(newElementsMap, newVvector)
}