Removed all dead config accessors.

This commit is contained in:
Kevin DeLorey 2021-07-23 07:50:37 -06:00
parent d8f0213316
commit 5b9f173254

View file

@ -120,12 +120,6 @@ export class Config {
};
}
get checkOnSave() {
return {
command: this.get<string>("checkOnSave.command"),
};
}
get cargoRunner() {
return this.get<string | undefined>("cargoRunner");
}
@ -150,17 +144,6 @@ export class Config {
};
}
get lens() {
return {
enable: this.get<boolean>("lens.enable"),
run: this.get<boolean>("lens.run"),
debug: this.get<boolean>("lens.debug"),
implementations: this.get<boolean>("lens.implementations"),
methodReferences: this.get<boolean>("lens.methodReferences"),
references: this.get<boolean>("lens.references"),
};
}
get hoverActions() {
return {
enable: this.get<boolean>("hoverActions.enable"),