Adding more explicit returns

This commit is contained in:
Matt Bierner
2017-02-01 17:29:57 -08:00
parent 2a82bcdc57
commit c342eaa22e
65 changed files with 124 additions and 55 deletions

View File

@@ -39,7 +39,7 @@ export class MainThreadCommands extends MainThreadCommandsShape {
this._disposables[id].dispose();
delete this._disposables[id];
}
return;
return undefined;
}
$executeCommand<T>(id: string, args: any[]): Thenable<T> {