Skip to content

Commit c351f23

Browse files
committed
Fix CI
1 parent 01c0bd2 commit c351f23

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

lsp-java-boot.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
:type 'boolean)
3636

3737
(defcustom lsp-java-boot-java-tools-jar nil
38-
"Path to tools jar. If it is not specified it will be calculated using `JAVA_HOME'."
38+
"Path to tools jar. If it is not specified it will be
39+
calculated using `JAVA_HOME'."
3940
:group 'lsp-java-boot
4041
:type 'file)
4142

lsp-java.el

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,9 @@ example 'java.awt.*' will hide all types from the awt packages."
441441
:group 'lsp-mode)
442442

443443
(defcustom lsp-java-import-gradle-home nil
444-
"Use Gradle from the specified local installation directory or GRADLE_HOME if the Gradle wrapper is missing or disabled and no 'java.import.gradle.version' is specified."
444+
"Use Gradle from the specified local installation directory or
445+
GRADLE_HOME if the Gradle wrapper is missing or disabled and no
446+
'java.import.gradle.version' is specified."
445447
:type 'string)
446448

447449
(defcustom lsp-java-import-gradle-java-home nil

lsp-jt.el

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,9 @@
329329
(define-key (kbd "d") #'lsp-jt-debug)
330330
(define-key (kbd "R") #'lsp-jt-browser-refresh))
331331
"Keymap for `lsp-jt-mode'.")
332+
332333
(define-minor-mode lsp-jt-mode "Java Test Mode"
333-
nil nil lsp-jt-mode-map)
334+
:keymap lsp-jt-mode-map)
334335

335336
(lsp-treemacs-define-action lsp-jt-debug (:data)
336337
"Debug from browser."

0 commit comments

Comments
 (0)