From 7ff974be2c2a979ebd2c1e5a6bd5bfa948f787cc Mon Sep 17 00:00:00 2001 From: William Wall Date: Tue, 18 Sep 2018 14:12:31 -0600 Subject: [PATCH] Remove superfluous bitwise operations --- src/ol/structs/RBush.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/structs/RBush.js b/src/ol/structs/RBush.js index ab7746db1d..3a5dfc9fc8 100644 --- a/src/ol/structs/RBush.js +++ b/src/ol/structs/RBush.js @@ -233,7 +233,7 @@ class RBush { concat(rbush) { this.rbush_.load(rbush.rbush_.all()); for (const i in rbush.items_) { - this.items_[i | 0] = rbush.items_[i | 0]; + this.items_[i] = rbush.items_[i]; } }