refactor(nav-viewport): remove ItemCreator

This commit is contained in:
Andrew
2015-04-02 10:45:47 -06:00
parent c8b317aeeb
commit 174337fe84
2 changed files with 0 additions and 14 deletions

View File

@ -85,19 +85,6 @@ export class NavViewport {
}
class ItemCreator {
constructor() {
this._array = []
}
instantiate(navItem) {
this._array.push(navItem)
return navItem.waitForSetup()
}
destroy(navItem) {
return arrayUtil.remove(this._array, navItem)
}
}
class NavItem {
constructor(ComponentClass) {
this.Class = ComponentClass