From d905abfb118ca50f6af1292073ce4fc3b91c7045 Mon Sep 17 00:00:00 2001 From: Veetaha Date: Mon, 17 Feb 2020 22:35:37 +0200 Subject: vscode: migrate to tripple equals --- editors/code/src/inlay_hints.ts | 2 +- editors/code/src/installation/server.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 26705067a..641ec15c6 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts @@ -73,7 +73,7 @@ class HintsUpdater { async setEnabled(enabled: boolean): Promise { console.log({ enabled, prev: this.enabled }); - if (this.enabled == enabled) return; + if (this.enabled === enabled) return; this.enabled = enabled; if (this.enabled) { diff --git a/editors/code/src/installation/server.ts b/editors/code/src/installation/server.ts index 63ab104a1..750852921 100644 --- a/editors/code/src/installation/server.ts +++ b/editors/code/src/installation/server.ts @@ -42,7 +42,7 @@ export async function ensureServerBinary(source: null | BinarySource): Promise