Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 1c58040d58..b83582a344 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -5,8 +5,6 @@ import { log } from "./util";
export type UpdatesChannel = "stable" | "nightly";
-const NIGHTLY_TAG = "nightly";
-
export type RunnableEnvCfg =
| undefined
| Record<string, string>
@@ -175,10 +173,6 @@ export class Config {
gotoTypeDef: this.get<boolean>("hover.actions.gotoTypeDef.enable"),
};
}
-
- get currentExtensionIsNightly() {
- return this.package.releaseTag === NIGHTLY_TAG;
- }
}
export async function updateConfig(config: vscode.WorkspaceConfiguration) {