This commit is contained in:
Benjamin Pasero
2018-12-11 13:04:19 +01:00
parent 31b6323ea9
commit d6b26a567d
14 changed files with 118 additions and 104 deletions
@@ -46,6 +46,6 @@ export class WorkspacesChannelClient implements IWorkspacesService {
constructor(private channel: IChannel) { }
createWorkspace(folders?: IWorkspaceFolderCreationData[]): TPromise<IWorkspaceIdentifier> {
return TPromise.wrap(this.channel.call('createWorkspace', folders));
return this.channel.call('createWorkspace', folders);
}
}