Skip to content

Commit 7b5a249

Browse files
committed
Fix seqfirst
1 parent b334a94 commit 7b5a249

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp-java-boot.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ Store CALLBACK to use it `sts/highlight'."
8888
(cl-defmethod lsp-execute-command
8989
(_server (_command (eql sts.open.url)) params)
9090
"Execute open url command from PARAMS data."
91-
(browse-url (seq-first params)))
91+
(browse-url (lsp-seq-first params)))
9292

9393
(cl-defmethod lsp-execute-command
9494
(_server (_command (eql sts.showHoverAtPosition)) params)
9595
"Execute show hover at position command with PARAMS data."
96-
(goto-char (lsp--position-to-point (seq-first params)))
96+
(goto-char (lsp--position-to-point (lsp-seq-first params)))
9797
(lsp-describe-thing-at-point))
9898

9999
(defun lsp-java-boot--sts-hightlight (workspace params)

0 commit comments

Comments
 (0)