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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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