Skip to content

Commit

Permalink
null ref in provide signature help, fixes #35 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenWeatherford authored and Stephen Weatherford committed Apr 19, 2018
1 parent 1ddb740 commit eae0cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AzureRMTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ export class AzureRMTools {
}

private onProvideSignatureHelp(document: vscode.TextDocument, position: vscode.Position, token: vscode.CancellationToken): Promise<vscode.SignatureHelp> {
let result: Promise<vscode.SignatureHelp> = null;
let result: Promise<vscode.SignatureHelp> = Promise.resolve(null);

this.logOnError(() => {
const deploymentTemplate: DeploymentTemplate = this.getDeploymentTemplate(document);
Expand Down

0 comments on commit eae0cd3

Please sign in to comment.