Skip to content

Commit 2a22b3f

Browse files
committed
Fix gradle regexp
Fixes #96
1 parent 17450c5 commit 2a22b3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lsp-java.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ FULL specify whether full or incremental build will be performed."
333333
"Update project configuration."
334334
(interactive)
335335
(let ((file-name (file-name-nondirectory (buffer-file-name))))
336-
(if (or (string= file-name "pom.xml") (string-match "\\.gradle\\'" file-name))
336+
(if (or (string= file-name "pom.xml") (string-match "\\.gradle" file-name))
337337
(with-lsp-workspace (lsp-java--current-workspace-or-lose)
338338
(lsp-send-notification
339339
(lsp-make-request "java/projectConfigurationUpdate"

0 commit comments

Comments
 (0)