From b2e45ed95c5ffe1b30205faaa7060c7e261d8794 Mon Sep 17 00:00:00 2001 From: VoR0220 Date: Fri, 18 May 2018 10:42:08 -0500 Subject: [PATCH] remove unneeded code line Signed-off-by: VoR0220 --- lib/dashboard/console.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/dashboard/console.js b/lib/dashboard/console.js index 89fff0a0..edd3feff 100644 --- a/lib/dashboard/console.js +++ b/lib/dashboard/console.js @@ -39,7 +39,6 @@ class Console { for (let pluginCmd of pluginCmds) { let pluginOutput = pluginCmd.call(this, cmd, {}); if (pluginOutput !== false && pluginOutput !== 'false' && pluginOutput !== undefined) return callback(pluginOutput); - //if (pluginOutput === undefined) return callback(""); } let output = this.processEmbarkCmd(cmd);