We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b806eb commit 9ee7860Copy full SHA for 9ee7860
src/extension.ts
@@ -61,9 +61,7 @@ export class ClassCompletionItemProvider implements CompletionItemProvider {
61
if (key === NONE) {
62
resolve(NONE);
63
} else {
64
- const items = this.cache.get(key);
65
-
66
- if (items) {
+ if (this.cache.get(key)) {
67
resolve(key);
68
} else if (this.isRemote.test(key)) {
69
this.fetchRemote(key).then(key => resolve(key));
0 commit comments