diff options
author | Aleksey Kladov <[email protected]> | 2020-02-18 12:44:56 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-18 12:44:56 +0000 |
commit | 742459c8fe08e359ae380e3e1dc0d059c0b4f871 (patch) | |
tree | 110b368f39cab91008c2e265bf41751c24597b14 | |
parent | d05480a178b132e62b8aff8986a8cb3dd3a89c0b (diff) | |
parent | 765852a44461ed3524fe89eebbc9235986093adc (diff) |
Merge pull request #3204 from Veetaha/feature/vscode-remove-updates-notification-comment
vscode: remove comment about updates notification
-rw-r--r-- | editors/code/src/installation/server.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/editors/code/src/installation/server.ts b/editors/code/src/installation/server.ts index 6e730fbfc..63ab104a1 100644 --- a/editors/code/src/installation/server.ts +++ b/editors/code/src/installation/server.ts | |||
@@ -43,7 +43,6 @@ export async function ensureServerBinary(source: null | BinarySource): Promise<n | |||
43 | console.log("Installed version:", installedVersion, "required:", requiredVersion); | 43 | console.log("Installed version:", installedVersion, "required:", requiredVersion); |
44 | 44 | ||
45 | if (isBinaryAvailable(prebuiltBinaryPath) && installedVersion == requiredVersion) { | 45 | if (isBinaryAvailable(prebuiltBinaryPath) && installedVersion == requiredVersion) { |
46 | // FIXME: check for new releases and notify the user to update if possible | ||
47 | return prebuiltBinaryPath; | 46 | return prebuiltBinaryPath; |
48 | } | 47 | } |
49 | 48 | ||