diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 2277eeb7ea..0987070b94 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts @@ -120,12 +120,6 @@ export class Config { }; } - get checkOnSave() { - return { - command: this.get("checkOnSave.command"), - }; - } - get cargoRunner() { return this.get("cargoRunner"); } @@ -150,17 +144,6 @@ export class Config { }; } - get lens() { - return { - enable: this.get("lens.enable"), - run: this.get("lens.run"), - debug: this.get("lens.debug"), - implementations: this.get("lens.implementations"), - methodReferences: this.get("lens.methodReferences"), - references: this.get("lens.references"), - }; - } - get hoverActions() { return { enable: this.get("hoverActions.enable"),