diff --git a/src/vs/editor/contrib/suggest/suggestController.ts b/src/vs/editor/contrib/suggest/suggestController.ts index 7de4bb4c2f0cf4502a43366d3a0371710455de83..b45b15ded32a2edb04bdc0ae1e96df9fd2c358df 100644 --- a/src/vs/editor/contrib/suggest/suggestController.ts +++ b/src/vs/editor/contrib/suggest/suggestController.ts @@ -252,7 +252,7 @@ export class SuggestController implements IEditorContribution { private static _onDidSelectTelemetry(service: ITelemetryService, item: ISuggestion): void { /* __GDPR__ "acceptSuggestion" : { - "type" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } + "type" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, "multiline" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ diff --git a/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts b/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts index fa1f8e5db02af1571ce79fa4d37e1a3cc5c8cc2d..75b4b97e821119ab44c779201e9fab17784292f4 100644 --- a/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts +++ b/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts @@ -287,7 +287,7 @@ export class BreadcrumbsControl { /* __GDPR__ "breadcrumbs/select" : { - "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog('breadcrumbs/select', { type: element instanceof TreeElement ? 'symbol' : 'file' }); @@ -326,7 +326,7 @@ export class BreadcrumbsControl { this._revealInEditor(event, data.target, this._getEditorGroup(data.payload && data.payload.originalEvent)); /* __GDPR__ "breadcrumbs/open" : { - "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }, + "type": { "classification": "SystemMetaData", "purpose": "FeatureInsight" } } */ this._telemetryService.publicLog('breadcrumbs/open', { type: !data ? 'nothing' : data.target instanceof TreeElement ? 'symbol' : 'file' });