From a7ca55a87dfe58cff6dd06bda9be4a5459395dd2 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 28 Nov 2008 14:02:16 +0000 Subject: [PATCH] Remove some dump statements --- content/commands.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/content/commands.js b/content/commands.js index f2619b24..af1fb3b6 100644 --- a/content/commands.js +++ b/content/commands.js @@ -473,7 +473,6 @@ function Commands() //{{{ resetCompletions(); var sub = str.substr(i); - //liberator.dump(i + ": " + sub + " - " + onlyArgumentsRemaining + "\n"); if ((!onlyArgumentsRemaining) && /^--(\s|$)/.test(sub)) { onlyArgumentsRemaining = true; @@ -531,12 +530,9 @@ function Commands() //{{{ let type = argTypes[opt[1]]; if (type && (!complete || arg != null)) { - liberator.dump("arg: " + arg); arg = type.parse(arg); - liberator.dump("arg: " + arg); if (arg == null || (typeof arg == "number" && isNaN(arg))) { - liberator.dump("arg: " + arg); echoerr("Invalid argument for " + type.description + " option: " + optname); if (complete) complete.highlight(args.completeStart, count - 1, "SPELLCHECK");