We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4da9b2d commit 305eb56Copy full SHA for 305eb56
lsp-java.el
@@ -961,13 +961,13 @@ PROJECT-URI uri of the item."
961
962
(cl-defmethod lsp-execute-command
963
(_server (command (eql java.show.references)) params)
964
- (if-let (refs (cl-third params))
+ (if-let (refs (cl-third (append params nil)))
965
(xref--show-xrefs (lsp--locations-to-xref-items refs) nil)
966
(user-error "No references")))
967
968
969
(_server (command (eql java.show.implementations)) params)
970
971
972
(user-error "No implementations")))
973
0 commit comments