From 4e2556de52f211b5ce62323b1d6628e2dbbf6308 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 31 Dec 2019 10:39:08 +0100 Subject: [PATCH] move '{' of 'export class .* {' to newline --- Account/Account.js | 3 ++- Account/AccountManager.js | 3 ++- Asset/AssetManager.js | 3 ++- Auth/Auth.js | 3 ++- Config/Options.js | 3 ++- DataStorage/CacheManager.js | 3 ++- DataStorage/LocalStorage.js | 3 ++- DataStorage/StorageManager.js | 3 ++- Dispatcher/Dispatcher.js | 3 ++- Event/EventManager.js | 3 ++- Log/Logger.js | 3 ++- Message/Notification/App/AppNotification.js | 3 ++- Message/Notification/Browser/BrowserNotification.js | 3 ++- Message/Notification/NotificationManager.js | 3 ++- Message/Notification/NotificationMessage.js | 3 ++- Message/Request/Request.js | 3 ++- Message/Response/Response.js | 3 ++- Message/Response/ResponseManager.js | 3 ++- Module/ModuleFactory.js | 3 ++- Module/ModuleManager.js | 3 ++- UI/ActionManager.js | 3 ++- UI/Component/AdvancedInput.js | 4 +++- UI/Component/AdvancedSelect.js | 3 ++- UI/Component/Form.js | 3 ++- UI/Component/Input.js | 3 ++- UI/Component/Tab.js | 3 ++- UI/Component/Table.js | 3 ++- UI/DragNDrop.js | 3 ++- UI/GeneralUI.js | 3 ++- UI/Input/InputManager.js | 3 ++- UI/Input/Keyboard/KeyboardManager.js | 3 ++- UI/Input/Mouse/MouseManager.js | 3 ++- UI/Input/Touch/TouchManager.js | 3 ++- UI/Input/Voice/ReadManager.js | 3 ++- UI/Input/Voice/VoiceManager.js | 3 ++- UI/UIManager.js | 3 ++- Uri/Http.js | 3 ++- Uri/UriFactory.js | 3 ++- Views/FormView.js | 3 ++- Views/TableView.js | 3 ++- 40 files changed, 81 insertions(+), 40 deletions(-) diff --git a/Account/Account.js b/Account/Account.js index f7b61f3..02be4ba 100644 --- a/Account/Account.js +++ b/Account/Account.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class Account { +export class Account +{ /** * @constructor * diff --git a/Account/AccountManager.js b/Account/AccountManager.js index 13f229a..3672c22 100644 --- a/Account/AccountManager.js +++ b/Account/AccountManager.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class AccountManager { +export class AccountManager +{ /** * @constructor * diff --git a/Asset/AssetManager.js b/Asset/AssetManager.js index f7df551..b7661f4 100644 --- a/Asset/AssetManager.js +++ b/Asset/AssetManager.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class AssetManager { +export class AssetManager +{ /** * @constructor * diff --git a/Auth/Auth.js b/Auth/Auth.js index 43d1462..6bb3348 100644 --- a/Auth/Auth.js +++ b/Auth/Auth.js @@ -10,7 +10,8 @@ import { RequestType } from '../../Message/Request/RequestType.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Auth { +export class Auth +{ /** * @constructor * diff --git a/Config/Options.js b/Config/Options.js index 82954f6..34c6c04 100644 --- a/Config/Options.js +++ b/Config/Options.js @@ -9,7 +9,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class Options { +export class Options +{ /** * @constructor * diff --git a/DataStorage/CacheManager.js b/DataStorage/CacheManager.js index a83bc84..08147cc 100644 --- a/DataStorage/CacheManager.js +++ b/DataStorage/CacheManager.js @@ -1,4 +1,5 @@ -export class CacheManager { +export class CacheManager +{ constructor () { diff --git a/DataStorage/LocalStorage.js b/DataStorage/LocalStorage.js index 4265509..29093b9 100644 --- a/DataStorage/LocalStorage.js +++ b/DataStorage/LocalStorage.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class LocalStorage { +export class LocalStorage +{ /** * @constructor * diff --git a/DataStorage/StorageManager.js b/DataStorage/StorageManager.js index 73c3bfa..c42d583 100644 --- a/DataStorage/StorageManager.js +++ b/DataStorage/StorageManager.js @@ -1,4 +1,5 @@ -export class StorageManager { +export class StorageManager +{ constructor () { }; diff --git a/Dispatcher/Dispatcher.js b/Dispatcher/Dispatcher.js index 9fe6db0..7a4fc67 100644 --- a/Dispatcher/Dispatcher.js +++ b/Dispatcher/Dispatcher.js @@ -1,4 +1,5 @@ -export class Dispatcher { +export class Dispatcher +{ constructor () { }; diff --git a/Event/EventManager.js b/Event/EventManager.js index 50d559c..b681546 100644 --- a/Event/EventManager.js +++ b/Event/EventManager.js @@ -10,7 +10,8 @@ import { Logger } from '../Log/Logger.js'; * @version 1.0.0 * @since 1.0.0 */ -export class EventManager { +export class EventManager +{ /** * @constructor * diff --git a/Log/Logger.js b/Log/Logger.js index 5ab3739..90f20bd 100644 --- a/Log/Logger.js +++ b/Log/Logger.js @@ -9,7 +9,8 @@ import { Request } from '../Message/Request/Request.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Logger { +export class Logger +{ /** * @constructor * diff --git a/Message/Notification/App/AppNotification.js b/Message/Notification/App/AppNotification.js index aa51a4e..77c5a74 100644 --- a/Message/Notification/App/AppNotification.js +++ b/Message/Notification/App/AppNotification.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class AppNotification { +export class AppNotification +{ /** * @constructor * diff --git a/Message/Notification/Browser/BrowserNotification.js b/Message/Notification/Browser/BrowserNotification.js index 644d144..8dbb631 100644 --- a/Message/Notification/Browser/BrowserNotification.js +++ b/Message/Notification/Browser/BrowserNotification.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class BrowserNotification { +export class BrowserNotification +{ /** * @constructor * diff --git a/Message/Notification/NotificationManager.js b/Message/Notification/NotificationManager.js index 2a791c7..bf4a3fb 100644 --- a/Message/Notification/NotificationManager.js +++ b/Message/Notification/NotificationManager.js @@ -10,7 +10,8 @@ import { NotificationType } from '../../../jsOMS/Message/Notification/Notificati * @version 1.0.0 * @since 1.0.0 */ -export class NotificationManager { +export class NotificationManager +{ /** * @constructor * diff --git a/Message/Notification/NotificationMessage.js b/Message/Notification/NotificationMessage.js index e1f805a..ede034c 100644 --- a/Message/Notification/NotificationMessage.js +++ b/Message/Notification/NotificationMessage.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class NotificationMessage { +export class NotificationMessage +{ /** * @constructor * diff --git a/Message/Request/Request.js b/Message/Request/Request.js index fd1387c..a8b7f73 100644 --- a/Message/Request/Request.js +++ b/Message/Request/Request.js @@ -13,7 +13,8 @@ import { RequestType } from './RequestType.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Request { +export class Request +{ /** * @constructor * diff --git a/Message/Response/Response.js b/Message/Response/Response.js index ecc6589..1c4d796 100644 --- a/Message/Response/Response.js +++ b/Message/Response/Response.js @@ -8,7 +8,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class Response { +export class Response +{ /** * @constructor * diff --git a/Message/Response/ResponseManager.js b/Message/Response/ResponseManager.js index dd7aac0..8e121a9 100644 --- a/Message/Response/ResponseManager.js +++ b/Message/Response/ResponseManager.js @@ -8,7 +8,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class ResponseManager { +export class ResponseManager +{ /** * @constructor * diff --git a/Module/ModuleFactory.js b/Module/ModuleFactory.js index 1e6aa88..4af1e1a 100644 --- a/Module/ModuleFactory.js +++ b/Module/ModuleFactory.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class ModuleFactory { +export class ModuleFactory +{ /** * @constructor * diff --git a/Module/ModuleManager.js b/Module/ModuleManager.js index 60a6e01..5d85762 100644 --- a/Module/ModuleManager.js +++ b/Module/ModuleManager.js @@ -7,7 +7,8 @@ import { ModuleFactory } from './ModuleFactory.js'; * @version 1.0.0 * @since 1.0.0 */ -export class ModuleManager { +export class ModuleManager +{ /** * @constructor * diff --git a/UI/ActionManager.js b/UI/ActionManager.js index 531be0f..ec57cc6 100644 --- a/UI/ActionManager.js +++ b/UI/ActionManager.js @@ -8,7 +8,8 @@ import { Logger } from '../Log/Logger.js'; * @version 1.0.0 * @since 1.0.0 */ -export class ActionManager { +export class ActionManager +{ /** * @constructor * diff --git a/UI/Component/AdvancedInput.js b/UI/Component/AdvancedInput.js index 26ab7c1..cff1fdb 100644 --- a/UI/Component/AdvancedInput.js +++ b/UI/Component/AdvancedInput.js @@ -1,4 +1,5 @@ import { Request } from '../../Message/Request/Request.js'; + /** * Advanced input class. * @@ -10,7 +11,8 @@ import { Request } from '../../Message/Request/Request.js'; * @todo: this class is probably the most stupid thing I've done in a long time. Seriously fix this! * @todo: Passing self to every MEMBER function is just dumb. */ -export class AdvancedInput { +export class AdvancedInput +{ /** * @constructor * diff --git a/UI/Component/AdvancedSelect.js b/UI/Component/AdvancedSelect.js index 7988ef7..72b04da 100644 --- a/UI/Component/AdvancedSelect.js +++ b/UI/Component/AdvancedSelect.js @@ -18,7 +18,8 @@ import { Request } from '../../Message/Request/Request.js'; * @todo: this class is probably the most stupid thing I've done in a long time. Seriously fix this! * @todo: Passing self to every MEMBER function is just dumb. */ -export class AdvancedSelect { +export class AdvancedSelect +{ /** * @constructor * diff --git a/UI/Component/Form.js b/UI/Component/Form.js index 386c7ec..44923e3 100644 --- a/UI/Component/Form.js +++ b/UI/Component/Form.js @@ -16,7 +16,8 @@ import { FormView } from '../../Views/FormView.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Form { +export class Form +{ /** * @constructor * diff --git a/UI/Component/Input.js b/UI/Component/Input.js index 53e5aad..d724850 100644 --- a/UI/Component/Input.js +++ b/UI/Component/Input.js @@ -8,7 +8,8 @@ import { Request } from '../../Message/Request/Request.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Input { +export class Input +{ /** * @constructor * diff --git a/UI/Component/Tab.js b/UI/Component/Tab.js index fe09dd5..f3134f4 100644 --- a/UI/Component/Tab.js +++ b/UI/Component/Tab.js @@ -9,7 +9,8 @@ import { UriFactory } from '../../Uri/UriFactory.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Tab { +export class Tab +{ /** * @constructor * diff --git a/UI/Component/Table.js b/UI/Component/Table.js index c8e3a96..d46320f 100644 --- a/UI/Component/Table.js +++ b/UI/Component/Table.js @@ -9,7 +9,8 @@ import { ResponseType } from '../../Message/Response/ResponseType.js'; * @version 1.0.0 * @since 1.0.0 */ -export class Table { +export class Table +{ /** * @constructor * diff --git a/UI/DragNDrop.js b/UI/DragNDrop.js index e24b051..e9df55a 100644 --- a/UI/DragNDrop.js +++ b/UI/DragNDrop.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class DragNDrop { +export class DragNDrop +{ /** * @constructor * diff --git a/UI/GeneralUI.js b/UI/GeneralUI.js index 14f3528..2b4029e 100644 --- a/UI/GeneralUI.js +++ b/UI/GeneralUI.js @@ -10,7 +10,8 @@ import { AdvancedInput } from './Component/AdvancedInput.js'; * @version 1.0.0 * @since 1.0.0 */ -export class GeneralUI { +export class GeneralUI +{ /** * @constructor * diff --git a/UI/Input/InputManager.js b/UI/Input/InputManager.js index b6b0c10..50a9cac 100644 --- a/UI/Input/InputManager.js +++ b/UI/Input/InputManager.js @@ -10,7 +10,8 @@ import { VoiceManager } from '../../../jsOMS/UI/Input/Voice/VoiceManager.js'; * @version 1.0.0 * @since 1.0.0 */ -export class InputManager { +export class InputManager +{ /** * @constructor * diff --git a/UI/Input/Keyboard/KeyboardManager.js b/UI/Input/Keyboard/KeyboardManager.js index a8a9e00..d0f34d7 100644 --- a/UI/Input/Keyboard/KeyboardManager.js +++ b/UI/Input/Keyboard/KeyboardManager.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class KeyboardManager { +export class KeyboardManager +{ /** * @constructor * diff --git a/UI/Input/Mouse/MouseManager.js b/UI/Input/Mouse/MouseManager.js index 313f142..2de874b 100644 --- a/UI/Input/Mouse/MouseManager.js +++ b/UI/Input/Mouse/MouseManager.js @@ -8,7 +8,8 @@ import { EventType } from '../../../../jsOMS/UI/Input/Mouse/EventType.js'; * @version 1.0.0 * @since 1.0.0 */ -export class MouseManager { +export class MouseManager +{ /** * @constructor * diff --git a/UI/Input/Touch/TouchManager.js b/UI/Input/Touch/TouchManager.js index b6fbb0a..0adbf9d 100644 --- a/UI/Input/Touch/TouchManager.js +++ b/UI/Input/Touch/TouchManager.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class TouchManager { +export class TouchManager +{ /** * @constructor * diff --git a/UI/Input/Voice/ReadManager.js b/UI/Input/Voice/ReadManager.js index 4a28e98..b7ad464 100644 --- a/UI/Input/Voice/ReadManager.js +++ b/UI/Input/Voice/ReadManager.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class ReadManager { +export class ReadManager +{ /** * @constructor * diff --git a/UI/Input/Voice/VoiceManager.js b/UI/Input/Voice/VoiceManager.js index 65e70a9..d8fe399 100644 --- a/UI/Input/Voice/VoiceManager.js +++ b/UI/Input/Voice/VoiceManager.js @@ -8,7 +8,8 @@ import { Logger } from '../../../Log/Logger.js'; * @version 1.0.0 * @since 1.0.0 */ -export class VoiceManager { +export class VoiceManager +{ /** * @constructor * diff --git a/UI/UIManager.js b/UI/UIManager.js index 1df72af..51c531c 100644 --- a/UI/UIManager.js +++ b/UI/UIManager.js @@ -13,7 +13,8 @@ import { GeneralUI } from '../UI/GeneralUI.js'; * @version 1.0.0 * @since 1.0.0 */ -export class UIManager { +export class UIManager +{ /** * @constructor * diff --git a/Uri/Http.js b/Uri/Http.js index 94264e1..56542c8 100644 --- a/Uri/Http.js +++ b/Uri/Http.js @@ -8,7 +8,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class Http { +export class Http +{ /** * @constructor * diff --git a/Uri/UriFactory.js b/Uri/UriFactory.js index da924ec..a07a18b 100644 --- a/Uri/UriFactory.js +++ b/Uri/UriFactory.js @@ -8,7 +8,8 @@ import { Http } from './Http.js'; * @version 1.0.0 * @since 1.0.0 */ -export class UriFactory { +export class UriFactory +{ /** * Set uri query * diff --git a/Views/FormView.js b/Views/FormView.js index 2a266b0..d7bf49e 100644 --- a/Views/FormView.js +++ b/Views/FormView.js @@ -12,7 +12,8 @@ import { Input } from '../UI/Component/Input.js'; * @version 1.0.0 * @since 1.0.0 */ -export class FormView { +export class FormView +{ /** * @constructor * diff --git a/Views/TableView.js b/Views/TableView.js index 0e264e3..2251893 100644 --- a/Views/TableView.js +++ b/Views/TableView.js @@ -6,7 +6,8 @@ * @version 1.0.0 * @since 1.0.0 */ -export class TableView { +export class TableView +{ /** * @constructor *