Update Item.js

This commit is contained in:
Thomas mathew 2022-04-04 13:18:19 -04:00
parent 92624afbff
commit fd3c346676
No known key found for this signature in database
GPG Key ID: BCF6283DC2692D70

View File

@ -459,7 +459,7 @@ export class Item extends AbstractStruct {
// Let c in conflictingItems, b in itemsBeforeOrigin
// ***{origin}bbbb{this}{c,b}{c,b}{o}***
// Note that conflictingItems is a subset of itemsBeforeOrigin
while (o !== null && o !== this.right) {
while (o != null && o !== this.right) {
itemsBeforeOrigin.add(o)
conflictingItems.add(o)
if (compareIDs(this.origin, o.origin)) {