From c084803acb0e68386fe3c79dae6258f187c7daa9 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Thu, 24 May 2018 10:46:11 -0400 Subject: [PATCH] reverse plugin.js changes --- lib/core/plugin.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/core/plugin.js b/lib/core/plugin.js index b22e30f7..17feb99a 100644 --- a/lib/core/plugin.js +++ b/lib/core/plugin.js @@ -22,7 +22,6 @@ var Plugin = function(options) { this.serviceChecks = []; this.pluginTypes = []; this.uploadCmds = []; - this.processLaunchCmds = []; this.imports = []; this.embarkjs_code = []; this.embarkjs_init_code = {}; @@ -190,11 +189,6 @@ Plugin.prototype.registerUploadCommand = function(cmd, cb) { this.pluginTypes.push('uploadCmds'); }; -Plugin.prototype.registerProcessLaunchCommand = function(cmd, cb) { - this.processLaunchCmds.push({cmd: cmd, cb: cb}); - this.pluginTypes.push('processLaunchCmds'); -}; - Plugin.prototype.addCodeToEmbarkJS = function(code) { this.embarkjs_code.push(code); this.pluginTypes.push('embarkjsCode');