Skip to content

Commit b6f14d8

Browse files
committed
Fix comments length
1 parent c351f23 commit b6f14d8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lsp-java.el

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,8 @@ bracket-based smart selection."
502502
:type 'number)
503503

504504
(defcustom lsp-java-sources-organize-imports-static-star-threshold 99
505-
"Specifies the number of static imports added before a star-import declaration is used."
505+
"Specifies the number of static imports added before a
506+
star-import declaration is used."
506507
:type 'number)
507508

508509
(defun lsp-java--checksum? (candidate)
@@ -513,7 +514,8 @@ every element of it is of type list, else nil."
513514
(seq-every-p #'consp candidate)))
514515

515516
(define-widget 'lsp-java-checksum-vector 'lazy
516-
"A vector of zero or more elements, every element of which is a checksum object."
517+
"A vector of zero or more elements, every element of which is a
518+
checksum object."
517519
:offset 4
518520
:tag "Checksum Vector"
519521
:type '(restricted-sexp
@@ -526,7 +528,8 @@ Sample value: [(:sha256 \"504b..\" :allowed t)]"
526528
:type 'lsp-java-checksum-vector)
527529

528530
(defcustom lsp-java-project-import-on-first-time-startup "automatic"
529-
"Specifies whether to import the Java projects, when opening the folder in Hybrid mode for the first time."
531+
"Specifies whether to import the Java projects, when opening
532+
the folder in Hybrid mode for the first time."
530533
:type '(choice (:tag "disabled" "interactive" "automatic")))
531534

532535
(defcustom lsp-java-project-import-hint t

0 commit comments

Comments
 (0)