put feature behind preview flag (#13147)

* put feature behind preview flag

* remove unused import
This commit is contained in:
Alan Ren
2020-10-30 10:17:54 -07:00
committed by GitHub
parent f5fc5c648e
commit 82d5fe3821
15 changed files with 30 additions and 37 deletions

View File

@@ -13,7 +13,6 @@ import { AppContext } from '../appContext';
import { AzureResourceServiceNames } from './constants';
import { IAzureResourceSubscriptionFilterService, IAzureResourceSubscriptionService } from './interfaces';
import { AzureResourceGroupService } from './providers/resourceGroup/resourceGroupService';
import * as vscode from 'vscode';
const localize = nls.loadMessageBundle();
@@ -285,7 +284,3 @@ export async function getSelectedSubscriptions(appContext: AppContext, account?:
}
return result;
}
export function isConnectionDialogBrowseViewEnabled(): boolean {
return vscode.workspace.getConfiguration('connection').get<boolean>('dialog.browse');
}