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.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index cb0868db59..0178e4bb87 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -24,7 +24,6 @@ export class Config {
"procMacro",
"files",
"highlighting",
- "updates.channel",
"lens", // works as lens.*
]
.map(opt => `${this.rootSection}.${opt}`);
@@ -103,8 +102,6 @@ export class Config {
return this.get<null | string>("server.path") ?? this.get<null | string>("serverPath");
}
get serverExtraEnv() { return this.get<Env | null>("server.extraEnv") ?? {}; }
- get channel() { return this.get<UpdatesChannel>("updates.channel"); }
- get askBeforeDownload() { return this.get<boolean>("updates.askBeforeDownload"); }
get traceExtension() { return this.get<boolean>("trace.extension"); }
get proxySettings(): ProxySettings {
const proxy = vscode