From a1c39006309c680aaa7417917af4d2b7ae3e754a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 16 May 2019 09:48:59 +0000 Subject: [PATCH] introspect: Remove unused variable https://gitlab.gnome.org/GNOME/gnome-shell/issues/1289 --- js/misc/introspect.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/misc/introspect.js b/js/misc/introspect.js index f7a7f2fe6..3ff48b016 100644 --- a/js/misc/introspect.js +++ b/js/misc/introspect.js @@ -42,8 +42,6 @@ var IntrospectService = class { } _isStandaloneApp(app) { - let windows = app.get_windows(); - return app.get_windows().some(w => w.transient_for == null); }