diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index d74630b98..d222e9610 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -149,12 +149,6 @@ class BaseAppView { return this._allItems; } - addItem(icon) { - let id = icon.id; - this._allItems.push(icon); - this._items[id] = icon; - } - _compareItems(a, b) { return a.name.localeCompare(b.name); }