Replace MessageRegistry with UrlHandlerRegistry

This commit is contained in:
Michelle Tilley
2017-09-18 17:40:29 -07:00
parent 0ae64c37de
commit 7c1d6ec07c
2 changed files with 7 additions and 5 deletions

View File

@@ -31,7 +31,8 @@ module.exports = class PackageManager {
constructor (params) {
({
config: this.config, styleManager: this.styleManager, notificationManager: this.notificationManager, keymapManager: this.keymapManager,
commandRegistry: this.commandRegistry, grammarRegistry: this.grammarRegistry, deserializerManager: this.deserializerManager, viewRegistry: this.viewRegistry
commandRegistry: this.commandRegistry, grammarRegistry: this.grammarRegistry, deserializerManager: this.deserializerManager, viewRegistry: this.viewRegistry,
urlHandlerRegistry: this.urlHandlerRegistry
} = params)
this.emitter = new Emitter()