From 55c32167114e930bb4128d6886fa41e26c9cc31b Mon Sep 17 00:00:00 2001 From: Alex <apuret@e-biz.fr> Date: Thu, 26 Nov 2020 14:41:38 +0100 Subject: [PATCH] refactor: clear commented code --- plugins/deadlock-extension/src/extension.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/plugins/deadlock-extension/src/extension.ts b/plugins/deadlock-extension/src/extension.ts index a85faff3..8b1891cb 100644 --- a/plugins/deadlock-extension/src/extension.ts +++ b/plugins/deadlock-extension/src/extension.ts @@ -16,7 +16,6 @@ export async function activate(context: vscode.ExtensionContext) { initViews(); - // View.getView(BRIEFING_ID).createOrShow(); await vscode.commands.executeCommand(OPEN_BRIEFING_COMMAND.cmd); // @ts-ignore @@ -26,10 +25,4 @@ export async function activate(context: vscode.ExtensionContext) { deadlockPanelProvider ); - // context.subscriptions.push( - // vscode.commands.registerCommand(OPEN_BRIEFING_COMMAND.command, () => { - // View.getView(BRIEFING_ID).createOrShow(); - // }) - // ); - } -- GitLab