mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
Clean up some of the extensions (#8267)
* 💄
* prune unused code
* more cleanup
* remove abunch of used code
This commit is contained in:
@@ -697,9 +697,9 @@ export class ConnectionProfile {
|
||||
this.options['azureTenantId'] = value;
|
||||
}
|
||||
|
||||
options: Map<string, any> = new Map<string, any>();
|
||||
options: { [key: string]: any } = {};
|
||||
|
||||
static createFrom(options: Map<string, any>): ConnectionProfile {
|
||||
static createFrom(options: { [key: string]: any }): ConnectionProfile {
|
||||
let profile = new ConnectionProfile();
|
||||
profile.options = options;
|
||||
return profile;
|
||||
|
||||
Reference in New Issue
Block a user