From fd709c0c0435f80c593a42e27ca14fcdc561379a Mon Sep 17 00:00:00 2001 From: Veetaha Date: Sat, 29 Feb 2020 21:10:16 +0200 Subject: vscode: simpify --- editors/code/src/inlay_hints.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'editors/code/src') diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index bbe8f67ef..ac07b2ea0 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts @@ -101,14 +101,10 @@ class HintsUpdater { clearHints() { for (const file of this.sourceFiles) { file.inlaysRequest?.cancel(); - this.renderHints(file, []); + file.renderHints([], this.client.protocol2CodeConverter) } } - private renderHints(file: RustSourceFile, hints: ra.InlayHint[]) { - file.renderHints(hints, this.client.protocol2CodeConverter); - } - refreshRustDocument(document: RustTextDocument) { if (!this.enabled) return; -- cgit v1.2.3