Split IUserDataProfilesService (#152385)

* - extract IUserDataProfileService from IUserDataProfilesService
- Adopt it

* 💄

Co-authored-by: Benjamin Pasero <benjamin.pasero@gmail.com>
This commit is contained in:
Sandeep Somavarapu
2022-06-17 09:04:35 +02:00
committed by GitHub
parent 761f8b21df
commit 3d4a1bc11e
44 changed files with 375 additions and 309 deletions

View File

@@ -111,7 +111,7 @@ export async function setupServerServices(connectionToken: ServerConnectionToken
fileService.registerProvider(Schemas.file, disposables.add(new DiskFileSystemProvider(logService)));
// Configuration
const userDataProfilesService = new UserDataProfilesService(undefined, undefined, environmentService, fileService, logService);
const userDataProfilesService = new UserDataProfilesService(undefined, environmentService, fileService, logService);
const configurationService = new ConfigurationService(environmentService.machineSettingsResource, fileService, new NullPolicyService(), logService);
services.set(IConfigurationService, configurationService);
await configurationService.initialize();