Remove async keyword from abstract functions (#14150)

This commit is contained in:
Charles Gagnon
2021-02-03 12:16:50 -08:00
committed by GitHub
parent 52a642f351
commit dcf17cc08b
8 changed files with 12 additions and 12 deletions

View File

@@ -30,9 +30,9 @@ export abstract class AgentDialog<T extends IAgentDialogData> {
return this.model.dialogMode;
}
protected abstract async updateModel(): Promise<void>;
protected abstract updateModel(): Promise<void>;
protected abstract async initializeDialog(dialog: azdata.window.Dialog): Promise<void>;
protected abstract initializeDialog(dialog: azdata.window.Dialog): Promise<void>;
public async openDialog(dialogName?: string) {
if (!this._isOpen) {