Pad: Delete non-functional debug logging facility

This commit is contained in:
Richard Hansen 2021-07-27 18:34:33 -04:00
parent 5d39a57507
commit 8d869ec927
7 changed files with 0 additions and 36 deletions

View file

@ -291,7 +291,6 @@ class SkipList {
if (end < 0) end = 0;
if (end > this._keyToNodeMap.size) end = this._keyToNodeMap.size;
window.dmesg(String([start, end, this._keyToNodeMap.size]));
if (end <= start) return [];
let n = this.atIndex(start);
const array = [n];