From ef9175e7bc8bc9f2b543b18622209bd48021b63f Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 14 Dec 2013 17:07:47 +0000 Subject: [PATCH] Remove debugging info --- core/modules/parsers/wikiparser/rules/hardlinebreaks.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/modules/parsers/wikiparser/rules/hardlinebreaks.js b/core/modules/parsers/wikiparser/rules/hardlinebreaks.js index 5c1bcdced..85a5d7e5d 100644 --- a/core/modules/parsers/wikiparser/rules/hardlinebreaks.js +++ b/core/modules/parsers/wikiparser/rules/hardlinebreaks.js @@ -43,7 +43,6 @@ exports.parse = function() { // Redo the terminator match reEnd.lastIndex = this.parser.pos; var match = reEnd.exec(this.parser.source); -console.log("Match",match,reEnd.lastIndex) if(match) { this.parser.pos = reEnd.lastIndex; // Add a line break if the terminator was a line break @@ -52,7 +51,6 @@ console.log("Match",match,reEnd.lastIndex) } } } while(match && !match[1]); -console.log("Generating",tree) // Return the nodes return tree; };