From 906ec3c8a9afd3875ee739282af3e532400e9687 Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Thu, 13 Dec 2012 21:37:09 +0100 Subject: [PATCH] panel: Remove unused method https://bugzilla.gnome.org/show_bug.cgi?id=690180 --- js/ui/panel.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/js/ui/panel.js b/js/ui/panel.js index 76bbfb080..3845dd0bb 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -1148,18 +1148,6 @@ const Panel = new Lang.Class({ this._addStyleClassName(this._sessionStyle); }, - _initBox: function(elements, box) { - for (let i = 0; i < elements.length; i++) { - let role = elements[i]; - let constructor = PANEL_ITEM_IMPLEMENTATIONS[role]; - if (!constructor) { - // panel icon is not supported (can happen for - // bluetooth or network) - continue; - } - } - }, - _hideIndicators: function() { for (let role in PANEL_ITEM_IMPLEMENTATIONS) { let indicator = this.statusArea[role];