Fix unit test

This commit is contained in:
aboyko
2024-10-15 14:07:52 -04:00
parent 2441801bc7
commit 94f7e82b48

View File

@@ -481,6 +481,11 @@ public class LanguageServerHarness {
return CompletableFuture.completedFuture(gavs);
}
@Override
public CompletableFuture<Void> refreshInlayHints() {
// TODO: perhaps at some point the client would need to ask the server for new inlay-hints for opened documents.
return CompletableFuture.completedFuture(null);
}
});
}