Skip to content

Commit

Permalink
Fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
BoykoAlex committed Oct 15, 2024
1 parent 2441801 commit 94f7e82
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,11 @@ public CompletableFuture<List<Gav>> projectGAV(ProjectGavParams params) {
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);
}
});

}
Expand Down

0 comments on commit 94f7e82

Please sign in to comment.