From c61776d8d4f190df9a89335988c7b44fb7396f6a Mon Sep 17 00:00:00 2001 From: Julian Schacher Date: Sat, 28 Jan 2023 23:56:40 +0100 Subject: [PATCH] Other: Remove unused typedef `BoxOrders` --- src/extension.js | 9 --------- src/extensionModules/BoxOrderManager.js | 9 --------- 2 files changed, 18 deletions(-) diff --git a/src/extension.js b/src/extension.js index 2e84736..7cd5c77 100644 --- a/src/extension.js +++ b/src/extension.js @@ -110,15 +110,6 @@ class Extension { /// Helper methods holding logic needed by other methods. /// //////////////////////////////////////////////////////////////////////////// - /** - * An object containing a box order for the left, center and right top bar - * box. - * @typedef {Object} BoxOrders - * @property {string[]} left - The box order for the left top bar box. - * @property {string[]} center - The box order for the center top bar box. - * @property {string[]} right - The box order for the right top bar box. - */ - /** * This method orders the top bar items of the specified box according to * the configured box orders. diff --git a/src/extensionModules/BoxOrderManager.js b/src/extensionModules/BoxOrderManager.js index 08289a1..76ce2bb 100644 --- a/src/extensionModules/BoxOrderManager.js +++ b/src/extensionModules/BoxOrderManager.js @@ -7,15 +7,6 @@ const ExtensionUtils = imports.misc.extensionUtils; const Main = imports.ui.main; -/** - * An object containing a box order for the left, center and right top bar - * box. - * @typedef {Object} BoxOrders - * @property {string[]} left - The box order for the left top bar box. - * @property {string[]} center - The box order for the center top bar box. - * @property {string[]} right - The box order for the right top bar box. - */ - /** * This class provides methods get, set and interact with box orders, while * taking over the work of translating between what is stored in settings and