[gnome-shell] automountManager: Remove unused volume queue
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] automountManager: Remove unused volume queue
- Date: Tue, 19 Jan 2021 21:02:28 +0000 (UTC)
commit 353483b052288fd89dea7a8b9e965c0ebec72144
Author: Sebastian Keller <skeller gnome org>
Date: Tue Jan 19 21:12:49 2021 +0100
automountManager: Remove unused volume queue
This is some leftover from code that was used to keep track of volumes
added/removed while the screen was locked before the move to a
components system in 2a800e4c. All that the remaining code does is
filter devices from an empty list.
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1579>
js/ui/components/automountManager.js | 3 ---
1 file changed, 3 deletions(-)
---
diff --git a/js/ui/components/automountManager.js b/js/ui/components/automountManager.js
index e50ae8e1d5..5f0a8aad50 100644
--- a/js/ui/components/automountManager.js
+++ b/js/ui/components/automountManager.js
@@ -19,7 +19,6 @@ var AUTORUN_EXPIRE_TIMEOUT_SECS = 10;
var AutomountManager = class {
constructor() {
this._settings = new Gio.Settings({ schema_id: SETTINGS_SCHEMA });
- this._volumeQueue = [];
this._activeOperations = new Map();
this._session = new GnomeSession.SessionManager();
this._session.connectSignal('InhibitorAdded',
@@ -220,8 +219,6 @@ var AutomountManager = class {
GLib.source_remove(volume._allowAutorunExpireId);
delete volume._allowAutorunExpireId;
}
- this._volumeQueue =
- this._volumeQueue.filter(element => element != volume);
}
_reaskPassword(volume) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]