mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 21:43:37 +00:00
Auto merge of #13039 - davidbarsky:davidbarsky/remove-used-nightly-checking-code, r=Veykril
chore: remove unused `currentExtensionIsNightly()` in `config.ts` I was debugging an unrelated issue in rust-analyzer, but came across this unused code and figured that it's fine to send a fully red PR :)
This commit is contained in:
commit
917bd68b37
1 changed files with 0 additions and 6 deletions
|
@ -5,8 +5,6 @@ import { log } from "./util";
|
||||||
|
|
||||||
export type UpdatesChannel = "stable" | "nightly";
|
export type UpdatesChannel = "stable" | "nightly";
|
||||||
|
|
||||||
const NIGHTLY_TAG = "nightly";
|
|
||||||
|
|
||||||
export type RunnableEnvCfg =
|
export type RunnableEnvCfg =
|
||||||
| undefined
|
| undefined
|
||||||
| Record<string, string>
|
| Record<string, string>
|
||||||
|
@ -175,10 +173,6 @@ export class Config {
|
||||||
gotoTypeDef: this.get<boolean>("hover.actions.gotoTypeDef.enable"),
|
gotoTypeDef: this.get<boolean>("hover.actions.gotoTypeDef.enable"),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
get currentExtensionIsNightly() {
|
|
||||||
return this.package.releaseTag === NIGHTLY_TAG;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function updateConfig(config: vscode.WorkspaceConfiguration) {
|
export async function updateConfig(config: vscode.WorkspaceConfiguration) {
|
||||||
|
|
Loading…
Reference in a new issue