Skip to content

Commit

Permalink
Specify return type
Browse files Browse the repository at this point in the history
  • Loading branch information
akshita31 committed May 24, 2018
1 parent 56ed3db commit d25f5f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/observers/OptionChangeObserver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function ConfigChangeObservable(optionObservable: Observable<Options>): Observab
});
}

export function ShowOmniSharpConfigChangePrompt(optionObservable: Observable<Options>, vscode: vscode) {
export function ShowOmniSharpConfigChangePrompt(optionObservable: Observable<Options>, vscode: vscode): Disposable {
let subscription = ConfigChangeObservable(optionObservable)
.subscribe(_ => {
let message = "OmniSharp configuration has changed. Would you like to relaunch the OmniSharp server with your changes?";
Expand Down

0 comments on commit d25f5f6

Please sign in to comment.