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 790c5f8 commit 527e7b7Copy full SHA for 527e7b7
lsp-java.el
@@ -413,13 +413,13 @@ FULL specify whether full or incremental build will be performed."
413
414
(cl-defmethod lsp-execute-command
415
(_server (command (eql java.show.references)) params)
416
- (if-let (refs (cl-third params))
+ (if-let (refs (seq-elt params 2))
417
(xref--show-xrefs (lsp--locations-to-xref-items refs) nil)
418
(user-error "No references")))
419
420
421
(_server (command (eql java.show.implementations)) params)
422
423
424
(user-error "No implementations")))
425
0 commit comments