@@ -30,7 +30,6 @@ import { Schemas } from 'vs/base/common/network';
30
30
import { IBackupFileService } from 'vs/workbench/services/backup/common/backup' ;
31
31
32
32
const enabledKey = 'workbench.welcome.enabled' ;
33
- const telemetryFrom = 'welcomePage' ;
34
33
35
34
export class WelcomePageContribution implements IWorkbenchContribution {
36
35
@@ -100,7 +99,7 @@ class WelcomePage {
100
99
const recentlyOpened = this . windowService . getRecentlyOpen ( ) ;
101
100
const uri = URI . parse ( require . toUrl ( './vs_code_welcome_page.html' ) )
102
101
. with ( { scheme : Schemas . walkThrough } ) ;
103
- const input = this . instantiationService . createInstance ( WalkThroughInput , localize ( 'welcome.title' , "Welcome" ) , '' , uri , telemetryFrom , container => this . onReady ( container , recentlyOpened ) ) ;
102
+ const input = this . instantiationService . createInstance ( WalkThroughInput , localize ( 'welcome.title' , "Welcome" ) , '' , uri , 'welcomePage' , container => this . onReady ( container , recentlyOpened ) ) ;
104
103
this . editorService . openEditor ( input , { pinned : true } , Position . ONE )
105
104
. then ( null , onUnexpectedError ) ;
106
105
}
@@ -136,10 +135,6 @@ class WelcomePage {
136
135
a . title = folder ;
137
136
a . href = 'javascript:void(0)' ;
138
137
a . addEventListener ( 'click' , e => {
139
- this . telemetryService . publicLog ( 'workbenchActionExecuted' , {
140
- id : 'openRecentFolder' ,
141
- from : telemetryFrom
142
- } ) ;
143
138
this . windowsService . openWindow ( [ folder ] ) ;
144
139
e . preventDefault ( ) ;
145
140
e . stopPropagation ( ) ;
0 commit comments