From 9c6f558c9e7e2a579145db078c89000ad982a5b9 Mon Sep 17 00:00:00 2001 From: Georges Basile Stavracas Neto Date: Tue, 2 Jul 2019 10:12:08 -0300 Subject: [PATCH] baseAppView: Remove unused BaseAppView.addItem Now that BaseAppView does not allow for subclasses to add and remove items directly, the addItem() method can be removed. Remove BaseAppView.addItem(). https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/645 --- js/ui/appDisplay.js | 6 ------ 1 file changed, 6 deletions(-) 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); }