remove useless registerProcess function

This commit is contained in:
Jonathan Rainville 2018-08-01 12:56:09 -04:00 committed by Pascal Precht
parent 640ec0b761
commit ebf18f47a8
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 0 additions and 6 deletions

View File

@ -24,7 +24,6 @@ var Plugin = function(options) {
this.pluginTypes = []; this.pluginTypes = [];
this.uploadCmds = []; this.uploadCmds = [];
this.apiCalls = []; this.apiCalls = [];
this.processes = [];
this.imports = []; this.imports = [];
this.embarkjs_code = []; this.embarkjs_code = [];
this.embarkjs_init_code = {}; this.embarkjs_init_code = {};
@ -232,11 +231,6 @@ Plugin.prototype.registerAPICall = function(method, endpoint, cb) {
this.addPluginType('apiCalls'); this.addPluginType('apiCalls');
}; };
Plugin.prototype.registerProcess = function(processName) {
this.processes.push({processName});
this.addPluginType('processes');
};
Plugin.prototype.runFilePipeline = function() { Plugin.prototype.runFilePipeline = function() {
var self = this; var self = this;