From 5b9f1732540fa273af84769080a18f484f67c79c Mon Sep 17 00:00:00 2001 From: Kevin DeLorey Date: Fri, 23 Jul 2021 07:50:37 -0600 Subject: [PATCH] Removed all dead config accessors. --- editors/code/src/config.ts | 17 ----------------- 1 file changed, 17 deletions(-) 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"),