1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 19:44:11 +01:00

Remove dump statements.

--HG--
extra : transplant_source : %27%D3%96%E0%3B%BB%D8%A2%AA%C1U%DC%E5%C5%19%E2h%19%EF%C8
This commit is contained in:
Kris Maglione
2011-01-24 05:11:17 -05:00
parent 74b6710484
commit 2956548352

View File

@@ -481,13 +481,6 @@ var CompletionContext = Class("CompletionContext", {
let filtered = this.filterFunc(this._cache.constructed);
if (this.maxItems)
filtered = filtered.slice(0, this.maxItems);
if (/types/.test(this.name)) {
let self = this;
util.dump(this.filters[1]);
util.dump("FILTERED", this._cache.constructed.map(function (item) [item.text.quote(), self.filters[0].call(self, item.text)]));
util.dump("FILTERED", this._cache.constructed.map(function (item)
self.filters.map(function (filter) filter.call(self, item))));
}
// Sorting
if (this.sortResults && this.compare)