From 704af9ddec1c78c0292dccd191c059edf016fc89 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Tue, 9 Apr 2019 16:04:44 +0200 Subject: [PATCH] remove type assertion --- src/vs/workbench/api/node/extHostOutputService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/node/extHostOutputService.ts b/src/vs/workbench/api/node/extHostOutputService.ts index 0e8fe7ad5ab..65f70ec6909 100644 --- a/src/vs/workbench/api/node/extHostOutputService.ts +++ b/src/vs/workbench/api/node/extHostOutputService.ts @@ -186,7 +186,7 @@ export class ExtHostOutputService implements ExtHostOutputServiceShape { } else { const extHostOutputChannel = createExtHostOutputChannel(name, this._outputDir, this._proxy); extHostOutputChannel.then(channel => channel._id.then(id => this._channels.set(id, channel))); - return { + return { get name(): string { return name; }, -- GitLab