Adding explicit returns

This commit is contained in:
Matt Bierner
2017-02-01 17:06:13 -08:00
parent f1abc274df
commit 406014ae97
20 changed files with 71 additions and 22 deletions

View File

@@ -166,7 +166,7 @@ export class CommandsConverter {
toInternal(command: vscode.Command): modes.Command {
if (!command) {
return;
return undefined;
}
const result: modes.Command = {
@@ -191,7 +191,7 @@ export class CommandsConverter {
fromInternal(command: modes.Command): vscode.Command {
if (!command) {
return;
return undefined;
}
const id = ObjectIdentifier.of(command);