Remove arc preview setting (#12850)

This commit is contained in:
Charles Gagnon
2020-10-09 10:15:45 -07:00
committed by GitHub
parent 5a49b99b8a
commit ba85d370d6
3 changed files with 0 additions and 14 deletions

View File

@@ -228,14 +228,6 @@ function registerAzureServices(appContext: AppContext): void {
}
async function onDidChangeConfiguration(e: vscode.ConfigurationChangeEvent): Promise<void> {
if (e.affectsConfiguration('azure.enableArcFeatures')) {
const response = await vscode.window.showInformationMessage(loc.requiresReload, loc.reload);
if (response === loc.reload) {
await vscode.commands.executeCommand('workbench.action.reloadWindow');
}
return;
}
if (e.affectsConfiguration('azure.piiLogging')) {
updatePiiLoggingLevel();
}