Skip to content

Commit d130b7d

Browse files
committed
remove openExternal event
1 parent 565110a commit d130b7d

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

src/vs/workbench/parts/welcome/walkThrough/electron-browser/walkThroughPart.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -210,18 +210,6 @@ export class WalkThroughPart extends BaseEditor {
210210
}
211211

212212
private open(uri: URI) {
213-
if (uri.scheme === 'http' || uri.scheme === 'https') {
214-
/* __GDPR__
215-
"openExternal" : {
216-
"uri" : { "classification": "SystemMetaData", "purpose": "FeatureInsight" },
217-
"from": { "classification": "SystemMetaData", "purpose": "FeatureInsight" }
218-
}
219-
*/
220-
this.telemetryService.publicLog('openExternal', {
221-
uri: uri.toString(true),
222-
from: this.input instanceof WalkThroughInput ? this.input.getTelemetryFrom() : undefined
223-
});
224-
}
225213
if (uri.scheme === 'command' && uri.path === 'git.clone' && !CommandsRegistry.getCommand('git.clone')) {
226214
this.messageService.show(Severity.Info, localize('walkThrough.gitNotFound', "It looks like Git is not installed on your system."));
227215
return;

0 commit comments

Comments
 (0)