mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 05:15:04 +00:00
vscode: migrate to tripple equals
This commit is contained in:
parent
f9acb4333f
commit
d905abfb11
4 changed files with 10 additions and 9 deletions
|
@ -73,7 +73,7 @@ class HintsUpdater {
|
|||
async setEnabled(enabled: boolean): Promise<void> {
|
||||
console.log({ enabled, prev: this.enabled });
|
||||
|
||||
if (this.enabled == enabled) return;
|
||||
if (this.enabled === enabled) return;
|
||||
this.enabled = enabled;
|
||||
|
||||
if (this.enabled) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue