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 3e82e06 commit 9c48330Copy full SHA for 9c48330
qute.ls/com.redhat.qute.ls/src/main/java/com/redhat/qute/project/tags/UserTagRegistry.java
@@ -13,6 +13,7 @@
13
14
import java.nio.file.Path;
15
import java.util.Collection;
16
+import java.util.Collections;
17
import java.util.List;
18
import java.util.concurrent.CompletableFuture;
19
import java.util.stream.Collectors;
@@ -114,7 +115,7 @@ protected synchronized CompletableFuture<List<UserTag>> loadBinaryUserTags() {
114
115
return getBinaryUserTags(params) //
116
.thenApply(tagInfos -> {
117
if (tagInfos == null) {
- return null;
118
+ return Collections.emptyList();
119
}
120
return tagInfos //
121
.stream() //
0 commit comments