Remove unused code.

This commit is contained in:
2019-10-02 12:11:42 +03:00
parent 60f0aa2a6c
commit b673c8a3d4
2 changed files with 3 additions and 5 deletions

View File

@ -11,8 +11,6 @@ class Simulator {
this.configs = configs;
this.assets = {};
// Read assets ids from configs
this.assetIds = configs.assets.ids;
@ -34,7 +32,7 @@ class Simulator {
_start() {
this.assetIds.forEach(id => {
this.assets[id] = new Asset(id, this.configs);
new Asset(id, this.configs);
});
}