From ebf18f47a8b13c0eeb7d88e220f1bdfd0e5aabba 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 fdeeb396..949718ae 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 = {}; @@ -232,11 +231,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;