no need to watch user data

This commit is contained in:
Sandeep Somavarapu
2019-07-04 00:52:01 +02:00
parent ee02563061
commit 40915fb441
3 changed files with 0 additions and 3 deletions

View File

@@ -40,7 +40,6 @@ export class UserConfiguration extends Disposable {
this.parser = new ConfigurationModelParser(this.userSettingsResource.toString(), this.scopes);
this.reloadConfigurationScheduler = this._register(new RunOnceScheduler(() => this.reload().then(configurationModel => this._onDidChangeConfiguration.fire(configurationModel)), 50));
this._register(this.fileService.watch(this.userSettingsResource));
this._register(Event.filter(this.fileService.onFileChanges, e => e.contains(this.userSettingsResource))(() => this.reloadConfigurationScheduler.schedule()));
}