From 3f5f7ee214c39244d107cfed6685b4cb152653af Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Sat, 16 Aug 2008 10:21:49 +0000 Subject: [PATCH] forgot to remove a debug output --- content/bookmarks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/bookmarks.js b/content/bookmarks.js index aec72488..ad8473f0 100644 --- a/content/bookmarks.js +++ b/content/bookmarks.js @@ -505,7 +505,7 @@ liberator.History = function () //{{{ for (var i = 0; i < rootNode.childCount; i++) { var node = rootNode.getChild(i); - dump("History child " + node.itemId + ": " + node.title + " - " + node.type + "\n"); + // dump("History child " + node.itemId + ": " + node.title + " - " + node.type + "\n"); if (node.type == node.RESULT_TYPE_URI) // just make sure it's a bookmark history.push([node.uri, node.title || "[No title]"]); }