1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:52:25 +01:00

Get rid of debugging statements.

This commit is contained in:
Kris Maglione
2008-10-07 05:38:27 +00:00
parent dff300dcbd
commit d337ab8c53

View File

@@ -132,9 +132,6 @@ liberator.Completion = function () //{{{
lastKey = key; lastKey = key;
lastObjs = objects; lastObjs = objects;
liberator.dump("continuing: " + continuing + "\n");
liberator.dump("key: " + key + "\nlastKey: " + lastKey + "\n");
if (!continuing) if (!continuing)
{ {
compl = []; compl = [];
@@ -286,7 +283,6 @@ liberator.Completion = function () //{{{
} }
lastIdx = i; lastIdx = i;
liberator.dump(liberator.util.objectToString(stack.map(function (a) json.encode(a))));
} }
this.complete = function (string) this.complete = function (string)
@@ -299,7 +295,6 @@ liberator.Completion = function () //{{{
} }
catch (e) catch (e)
{ {
liberator.dump(liberator.util.escapeString(str) + "\n" + e + "\n" + e.stack + "\n");
return [0, []]; return [0, []];
} }