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

Remove dump statements.

--HG--
branch : key-processing
This commit is contained in:
Kris Maglione
2011-01-24 05:11:17 -05:00
parent e0e2e805f7
commit 19f35d412a

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)