Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix(lsp/java): add missing keywords from completion provider (fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
itsaky committed Nov 13, 2023
1 parent ed52590 commit 9e46f50
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ class KeywordCompletionProvider(
"int",
"long",
"float",
"double"
"double",
"true",
"false",
"null"
)
private val METHOD_BODY_KEYWORDS =
arrayOf(
Expand Down Expand Up @@ -151,7 +154,8 @@ class KeywordCompletionProvider(
"int",
"long",
"float",
"double"
"double",
"synchronized"
)
}
}

0 comments on commit 9e46f50

Please sign in to comment.