diff --git a/client/src/context/context.ts b/client/src/context/context.ts index 6073799b..f92f5168 100644 --- a/client/src/context/context.ts +++ b/client/src/context/context.ts @@ -1,22 +1,11 @@ -import { ShortcutManager } from "../shortcut/shortcutmanager"; - - export interface ContextInterface { } export class Context { - #shortcutManager: ShortcutManager; - constructor( config:ContextInterface ) { - this.#shortcutManager = new ShortcutManager(); - - } - - getShortcutManager() { - return this.#shortcutManager; } } \ No newline at end of file diff --git a/client/src/olympusapp.ts b/client/src/olympusapp.ts index 83a4370c..cf3d3433 100644 --- a/client/src/olympusapp.ts +++ b/client/src/olympusapp.ts @@ -175,7 +175,6 @@ export class OlympusApp { this.#contextManager = new ContextManager(); this.#contextManager.add( "olympus", {} ); - this.#contextManager.add( "secondary", {} ); this.#map = new Map('map-container');