We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f6e24 commit a448e93Copy full SHA for a448e93
1 file changed
src/main/java/com/github/cameltooling/lsp/internal/CamelTextDocumentService.java
@@ -70,9 +70,7 @@ public class CamelTextDocumentService implements TextDocumentService {
70
71
public CamelTextDocumentService() {
72
camelCatalog = CompletableFuture.supplyAsync(() -> {
73
- DefaultCamelCatalog res = new DefaultCamelCatalog(true);
74
- res.loadVersion("2.20.1");
75
- return res;
+ return new DefaultCamelCatalog(true);
76
});
77
}
78
0 commit comments