From 461d552271d877f9d22becc46c0c09165ae69992 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 20 Jan 2019 15:24:08 -0500 Subject: [PATCH] Fixes lint issue --- src/vsls/host.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vsls/host.ts b/src/vsls/host.ts index 7a6626b..210c415 100644 --- a/src/vsls/host.ts +++ b/src/vsls/host.ts @@ -75,7 +75,7 @@ export class VslsHostService implements Disposable { this.onRequest(RepositoriesInFolderRequestType, this.onRepositoriesInFolderRequest.bind(this)); this.onRequest(WorkspaceFileExistsRequestType, this.onWorkspaceFileExistsRequest.bind(this)); - this.onWorkspaceFoldersChanged(); + void this.onWorkspaceFoldersChanged(); } dispose() {