mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-08-22 11:24:24 +00:00
Don't use a deprecated accessor
This commit is contained in:
parent
230ed3304a
commit
95c51d8f1d
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ export class Config {
|
||||||
readonly globalStoragePath: string;
|
readonly globalStoragePath: string;
|
||||||
|
|
||||||
constructor(ctx: vscode.ExtensionContext) {
|
constructor(ctx: vscode.ExtensionContext) {
|
||||||
this.globalStoragePath = ctx.globalStoragePath;
|
this.globalStoragePath = ctx.globalStorageUri.path;
|
||||||
vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions);
|
vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions);
|
||||||
this.refreshLogging();
|
this.refreshLogging();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue