More output to debug test fails in CI builds

This commit is contained in:
Kris De Volder
2019-05-10 09:23:10 -07:00
parent 119a59e498
commit 738d7ffceb
3 changed files with 22 additions and 3 deletions

View File

@@ -60,9 +60,6 @@ public class VscodeHoverEngineAdapter implements HoverHandler {
@Override
public Hover handle(TextDocumentPositionParams params) {
//TODO: This returns a CompletableFuture which suggests we should try to do expensive work asyncly.
// We are currently just doing all this in a blocking way and wrapping the already computed list into
// a trivial pre-resolved future.
try {
SimpleTextDocumentService documents = server.getTextDocumentService();
TextDocument doc = documents.get(params);