Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion org.eclipse.lsp4e.tests.mock/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Mock Language Server to test LSP4E
Bundle-SymbolicName: org.eclipse.lsp4e.tests.mock
Bundle-Version: 0.17.3.qualifier
Bundle-Version: 0.17.4.qualifier
Bundle-Vendor: Eclipse LSP4E
Bundle-RequiredExecutionEnvironment: JavaSE-21
Require-Bundle: org.eclipse.lsp4j,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public CompletableFuture<List<? extends CodeLens>> codeLens(CodeLensParams param
if (file.exists() && file.length() > 100) {
return CompletableFuture
.completedFuture(List.of(new CodeLens(new Range(new Position(1, 0), new Position(1, 1)),
new Command("Hi, I'm a CodeLens", null), null)));
new Command("Hi, I'm a CodeLens", "dummyCommand"), null)));
}
return CompletableFuture.completedFuture(Collections.emptyList());
}
Expand Down
Loading