From 18c54f41bd11edc4786bf41d1ffd856d5ffedd10 Mon Sep 17 00:00:00 2001 From: kisantia <31145923+kisantia@users.noreply.github.com> Date: Wed, 10 Apr 2019 16:22:18 -0700 Subject: [PATCH] remove unnecessary message that connection is needed (#4982) --- extensions/dacpac/src/wizard/dataTierApplicationWizard.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/extensions/dacpac/src/wizard/dataTierApplicationWizard.ts b/extensions/dacpac/src/wizard/dataTierApplicationWizard.ts index e65f208445..016af7f4b8 100644 --- a/extensions/dacpac/src/wizard/dataTierApplicationWizard.ts +++ b/extensions/dacpac/src/wizard/dataTierApplicationWizard.ts @@ -94,7 +94,6 @@ export class DataTierApplicationWizard { // don't open the wizard if connection dialog is cancelled if (!this.connection) { - vscode.window.showErrorMessage(localize('dacfx.needConnection', 'Please connect to a server before using this wizard.')); return; } }