From 9bba389a225628efffdfeb2da2762fbc885eb9fc Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Mon, 17 Jan 2022 14:16:23 +0100 Subject: [PATCH] Remove unused event --- .../keybinding/browser/keybindingService.ts | 32 ------------------- 1 file changed, 32 deletions(-) diff --git a/src/vs/workbench/services/keybinding/browser/keybindingService.ts b/src/vs/workbench/services/keybinding/browser/keybindingService.ts index 23fff4a5550..734b2093727 100644 --- a/src/vs/workbench/services/keybinding/browser/keybindingService.ts +++ b/src/vs/workbench/services/keybinding/browser/keybindingService.ts @@ -276,38 +276,6 @@ export class WorkbenchKeybindingService extends AbstractKeybindingService { this.isComposingGlobalContextKey.set(false); })); - const data = this.keyboardLayoutService.getCurrentKeyboardLayout(); - /* __GDPR__FRAGMENT__ - "IKeyboardLayoutInfo" : { - "name" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "id": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "text": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } - } - */ - /* __GDPR__FRAGMENT__ - "IKeyboardLayoutInfo" : { - "model" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "layout": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "variant": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "options": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "rules": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } - } - */ - /* __GDPR__FRAGMENT__ - "IKeyboardLayoutInfo" : { - "id" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, - "lang": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } - } - */ - /* __GDPR__ - "keyboardLayout" : { - "currentKeyboardLayout": { "${inline}": [ "${IKeyboardLayoutInfo}" ] } - } - */ - telemetryService.publicLog('keyboardLayout', { - currentKeyboardLayout: data - }); - this._register(browser.onDidChangeFullscreen(() => { const keyboard: IKeyboard | null = (navigator).keyboard;