remove unneeded assignment

This commit is contained in:
Iuri Matias 2018-05-29 17:25:45 -04:00
parent 1912981d7d
commit 9b368bc1b3
1 changed files with 0 additions and 2 deletions

View File

@ -28,8 +28,6 @@ class CodeGenerator {
this.communicationConfig = options.communicationConfig || {}; this.communicationConfig = options.communicationConfig || {};
this.namesystemConfig = options.namesystemConfig || {}; this.namesystemConfig = options.namesystemConfig || {};
this.env = options.env || 'development'; this.env = options.env || 'development';
// TODO: this should also be removed and use events instead
this.contractsManager = options.contractsManager;
this.plugins = options.plugins; this.plugins = options.plugins;
this.events = options.events; this.events = options.events;
} }