From 3e1f61622c1bdd1597a7b5fa5176a44df6f70cd3 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 1 Aug 2018 12:56:09 -0400 Subject: [PATCH] remove useless registerProcess function --- lib/core/plugin.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/core/plugin.js b/lib/core/plugin.js index ebfe96e5..e442233d 100644 --- a/lib/core/plugin.js +++ b/lib/core/plugin.js @@ -24,7 +24,6 @@ var Plugin = function(options) { this.pluginTypes = []; this.uploadCmds = []; this.apiCalls = []; - this.processes = []; this.imports = []; this.embarkjs_code = []; this.embarkjs_init_code = {}; @@ -228,11 +227,6 @@ Plugin.prototype.registerAPICall = function(method, endpoint, cb) { this.addPluginType('apiCalls'); }; -Plugin.prototype.registerProcess = function(processName) { - this.processes.push({processName}); - this.addPluginType('processes'); -}; - Plugin.prototype.runFilePipeline = function() { var self = this;