We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c862c74 commit d159968Copy full SHA for d159968
1 file changed
src/main/java/com/redhat/devtools/lsp4ij/client/LanguageClientImpl.java
@@ -208,6 +208,11 @@ private void refreshSemanticTokensForAllOpenedFiles() {
208
.submit(AppExecutorUtil.getAppExecutorService());
209
}
210
211
+ @Override
212
+ public CompletableFuture<Void> refreshInlineValues() {
213
+ return CompletableFuture.completedFuture(null);
214
+ }
215
+
216
@Override
217
public CompletableFuture<Void> refreshDiagnostics() {
218
return CompletableFuture.runAsync(this::refreshDiagnosticsForAllOpenedFiles);
0 commit comments