From 2992e3ea2b0115fd89e73075b811df897e7b0241 Mon Sep 17 00:00:00 2001 From: John McLear Date: Wed, 9 Oct 2013 16:34:50 +0100 Subject: [PATCH] clean up --- src/node/db/PadManager.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/node/db/PadManager.js b/src/node/db/PadManager.js index f1f7dbdc8..120649a2d 100644 --- a/src/node/db/PadManager.js +++ b/src/node/db/PadManager.js @@ -39,7 +39,6 @@ var globalPads = { this[':'+name] = value; if(!padList.list.length == 0){ // If we haven't populated the padList.list yet - console.warn("TEHB pad list is empty, filling it"); padList.init(); } @@ -164,9 +163,7 @@ exports.getPad = function(id, text, callback) exports.listAllPads = function(callback) { - console.warn("list all pads RAA") if(!padList.list.length == 0){ // If we haven't populated the padList.list yet - console.warn("pad list is empty, filling it asd asd "); padList.init(); } if(callback != null){ @@ -235,7 +232,6 @@ exports.isValidPadId = function(padId) */ exports.removePad = function(padId){ if(!padList.list.length == 0){ // If we haven't populated the padList.list yet - // console.warn("pad list is empty, filling it"); padList.init(); } db.remove("pad:"+padId);