Fixup merge

This commit is contained in:
Nick O'Leary 2021-01-18 15:11:24 +00:00
parent 7531314e3f
commit 9f71dbb006
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
2 changed files with 0 additions and 6 deletions

View File

@ -25,7 +25,6 @@ var RED = (function() {
cache: false,
url: 'plugins',
success: function(data) {
console.log(data);
loader.reportProgress(RED._("event.loadPlugins"), 13)
RED.i18n.loadPluginCatalogs(function() {
loadPlugins(function() {

View File

@ -478,7 +478,6 @@ function addModule(module) {
return Promise.reject(e);
}
try {
<<<<<<< HEAD
var moduleFiles = {};
var moduleStack = [module];
while(moduleStack.length > 0) {
@ -502,10 +501,6 @@ function addModule(module) {
}
}
return loadNodeFiles(moduleFiles).then(() => module)
=======
var moduleFiles = localfilesystem.getModuleFiles(module);
return loadModuleFiles(moduleFiles);
>>>>>>> Initial plugin runtime api implementation
} catch(err) {
return Promise.reject(err);
}