From ff6e9b259c811bebfc8b5c549b0499260dcfec14 Mon Sep 17 00:00:00 2001 From: Benjamin Christopher Simmonds <44439583+benibenj@users.noreply.github.com> Date: Tue, 2 Jul 2024 19:19:49 +0200 Subject: [PATCH] Remove console.log (#219715) remove console.log --- src/vs/workbench/browser/contextkeys.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/vs/workbench/browser/contextkeys.ts b/src/vs/workbench/browser/contextkeys.ts index ccfe454ba34e4..cffce2ce2675d 100644 --- a/src/vs/workbench/browser/contextkeys.ts +++ b/src/vs/workbench/browser/contextkeys.ts @@ -267,7 +267,6 @@ export class WorkbenchContextKeysHandler extends Disposable { // Context keys depending on the state of the editor group itself private updateActiveEditorGroupContextKeys(): void { - console.log('active group'); if (!this.editorService.activeEditor) { this.activeEditorGroupEmpty.set(true); } else { @@ -283,7 +282,6 @@ export class WorkbenchContextKeysHandler extends Disposable { // Context keys depending on the state of other editor groups private updateEditorGroupsContextKeys(): void { - console.log('all groups'); const groupCount = this.editorGroupService.count; if (groupCount > 1) { this.multipleEditorGroupsContext.set(true);