vscode: remove unnecessary code

This cancel is unnecessary since we cancel the previous inlay hints requests in `fetchHints()` method itself. This is not a hard error, we just called cancel() 2 times.
This commit is contained in:
Veetaha
2020-03-20 21:23:56 +02:00
committed by GitHub
parent 92b561b5c7
commit 95b5129a8a

View File

@@ -134,8 +134,6 @@ class HintsUpdater implements Disposable {
// No text documents changed, so we may try to use the cache // No text documents changed, so we may try to use the cache
if (!file.cachedDecorations) { if (!file.cachedDecorations) {
file.inlaysRequest?.cancel();
const hints = await this.fetchHints(file); const hints = await this.fetchHints(file);
if (!hints) return; if (!hints) return;