remove unneded _components var

pull/1/head
Iuri Matias 6 years ago committed by yann300
parent 1d815f2019
commit 18cd5a8853
  1. 13
      src/universal-dapp.js

@ -14,14 +14,11 @@ var executionContext = remixLib.execution.executionContext
function UniversalDApp (globalRegistry) { function UniversalDApp (globalRegistry) {
this.event = new EventManager() this.event = new EventManager()
var self = this this.data = {}
self.data = {} this._deps = {
self._components = {} config: globalRegistry.get('config').api,
self._components.registry = globalRegistry compiler: globalRegistry.get('compiler').api,
self._deps = { logCallback: globalRegistry.get('logCallback').api
config: self._components.registry.get('config').api,
compilersartefacts: self._components.registry.get('compilersartefacts').api,
logCallback: self._components.registry.get('logCallback').api
} }
executionContext.event.register('contextChanged', this, function (context) { executionContext.event.register('contextChanged', this, function (context) {
self.resetEnvironment() self.resetEnvironment()

Loading…
Cancel
Save