remove .name from IWorkspace

This commit is contained in:
isidor
2018-08-23 11:59:51 +02:00
parent 6090860b4f
commit a03b3b5066
29 changed files with 103 additions and 96 deletions

View File

@@ -58,7 +58,7 @@ function createServices(args: ParsedArgs, bufferLogService: BufferLogService): I
const environmentService = new EnvironmentService(args, process.execPath);
const consoleLogService = new ConsoleLogMainService(getLogLevel(environmentService));
const logService = new MultiplexLogService([consoleLogService, bufferLogService]);
const uriLabelService = new UriLabelService(environmentService);
const uriLabelService = new UriLabelService(environmentService, undefined);
process.once('exit', () => logService.dispose());