From fd3c346676612e0ca8f3da5b00f6b39edea84974 Mon Sep 17 00:00:00 2001 From: Thomas mathew Date: Mon, 4 Apr 2022 13:18:19 -0400 Subject: [PATCH] Update Item.js --- src/structs/Item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structs/Item.js b/src/structs/Item.js index 0b39a246..86cf68e0 100644 --- a/src/structs/Item.js +++ b/src/structs/Item.js @@ -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)) {