reverse plugin.js changes

This commit is contained in:
Jonathan Rainville 2018-05-24 10:46:11 -04:00
parent 2b54dfd7cc
commit f08c700151
1 changed files with 0 additions and 6 deletions

View File

@ -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');