ember-codemods / ember-module-migrator

Automated migration for new Ember application layout.
74 stars 15 forks source link

Fix `Overriding init` deprecations #44

Closed andyhot closed 7 years ago

andyhot commented 7 years ago

Those are appearing when running the tests or the tool

DEPRECATION: Overriding init without calling this._super is deprecated. Please call `this._super.init && this._super.init.apply(this, arguments);` addon: `undefined`
    at Object.<anonymous> (/home/andyhot/projects/js/ember-module-migrator/lib/models/logger.js:6:25)
DEPRECATION: Overriding init without calling this._super is deprecated. Please call this._super(), addon: `undefined`
    at Object.<anonymous> (/home/andyhot/projects/js/ember-module-migrator/lib/models/file-info.js:9:27)
DEPRECATION: Overriding init without calling this._super is deprecated. Please call `this._super.init && this._super.init.apply(this, arguments);` addon: `undefined`
    at Object.<anonymous> (/home/andyhot/projects/js/ember-module-migrator/lib/models/file-info-collection.js:3:37)
rwjblue commented 7 years ago

Thanks!