Skip to content

Commit d11814b

Browse files
committed
Implemented the abstract method getJavaInlayHint which is required method now.
1 parent d905806 commit d11814b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

bundles/io.openliberty.tools.eclipse.lsp4e/src/io/openliberty/tools/eclipse/mpls/LibertyMPLSClientImpl.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import org.eclipse.lsp4j.CompletionList;
3232
import org.eclipse.lsp4j.Diagnostic;
3333
import org.eclipse.lsp4j.Hover;
34+
import org.eclipse.lsp4j.InlayHint;
3435
import org.eclipse.lsp4j.Location;
3536
import org.eclipse.lsp4j.PublishDiagnosticsParams;
3637
import org.eclipse.lsp4j.SymbolInformation;
@@ -47,6 +48,7 @@
4748
import org.eclipse.lsp4mp.commons.MicroProfileJavaDiagnosticsParams;
4849
import org.eclipse.lsp4mp.commons.MicroProfileJavaFileInfoParams;
4950
import org.eclipse.lsp4mp.commons.MicroProfileJavaHoverParams;
51+
import org.eclipse.lsp4mp.commons.MicroProfileJavaInlayHintParams;
5052
import org.eclipse.lsp4mp.commons.MicroProfileJavaProjectLabelsParams;
5153
import org.eclipse.lsp4mp.commons.MicroProfileProjectInfo;
5254
import org.eclipse.lsp4mp.commons.MicroProfileProjectInfoParams;
@@ -275,4 +277,10 @@ public CompletableFuture<List<SymbolInformation>> getJavaWorkspaceSymbols(String
275277
// TODO Auto-generated method stub
276278
return null;
277279
}
280+
281+
@Override
282+
public CompletableFuture<List<InlayHint>> getJavaInlayHint(MicroProfileJavaInlayHintParams arg0) {
283+
// TODO Auto-generated method stub
284+
return null;
285+
}
278286
}

0 commit comments

Comments
 (0)