diff options
author | Veetaha <[email protected]> | 2020-02-29 19:14:10 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-03-07 12:08:35 +0000 |
commit | 057cd959dab18133db418979f5c711a1f98c007c (patch) | |
tree | acac1d99c63ab6a7e78a62a2b1800124b6c2daa8 /editors | |
parent | fd709c0c0435f80c593a42e27ca14fcdc561379a (diff) |
vscode: add dat semicolon
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index ac07b2ea0..7b9dcfb22 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -101,7 +101,7 @@ class HintsUpdater { | |||
101 | clearHints() { | 101 | clearHints() { |
102 | for (const file of this.sourceFiles) { | 102 | for (const file of this.sourceFiles) { |
103 | file.inlaysRequest?.cancel(); | 103 | file.inlaysRequest?.cancel(); |
104 | file.renderHints([], this.client.protocol2CodeConverter) | 104 | file.renderHints([], this.client.protocol2CodeConverter); |
105 | } | 105 | } |
106 | } | 106 | } |
107 | 107 | ||