Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Address usage of deprecated method 'SymbolInformation.setKind(SymbolKind)' #1180

Open
1 task
dessina-devasia opened this issue Dec 16, 2024 · 1 comment · May be fixed by #1227
Open
1 task

Address usage of deprecated method 'SymbolInformation.setKind(SymbolKind)' #1180

dessina-devasia opened this issue Dec 16, 2024 · 1 comment · May be fixed by #1227
Assignees
Milestone

Comments

@dessina-devasia
Copy link
Contributor

dessina-devasia commented Dec 16, 2024

The deprecated method SymbolInformation.setKind(SymbolKind) is invoked in the following method:

  • JaxRsWorkspaceSymbolParticipant.createSymbol(...)

This invocation needs to be addressed to ensure compatibility.

@anusreelakshmi934
Copy link
Contributor

anusreelakshmi934 commented Jan 9, 2025

This method is deprecated in version 2024.1.7 onwards.
SymbolInformation is deprecated in favor of DocumentSymbol or WorkspaceSymbol -
Github Repo Ref
LSP Reference

https://www.javadoc.io/static/org.eclipse.lsp4j/org.eclipse.lsp4j/0.20.1/deprecated-list.html

Replacement is provided here which is available in 2024.1.7 version and above.

This commit includes the necessary changes to be done for the modification.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment