Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: update readme
  • Loading branch information
s1n7ax committed Dec 3, 2025
commit c2a18d0886b9529211cd9176943123cb6219bf6a
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,11 +374,6 @@ require('java').setup({
version = '17',
},

-- Notifications
notifications = {
dap = true, -- Show DAP configuration messages
},

-- Logging
log = {
use_console = true,
Expand Down
7 changes: 1 addition & 6 deletions doc/nvim-java.txt
Original file line number Diff line number Diff line change
Expand Up @@ -407,12 +407,7 @@ want, following options are available
auto_install = true,
version = '17.0.2',
},

notifications = {
-- enable 'Configuring DAP' & 'DAP configured' messages on start up
dap = true,
},


-- We do multiple verifications to make sure things are in place to run this
-- plugin
verification = {
Expand Down
7 changes: 0 additions & 7 deletions lua/java/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ local V = jdtls_version_map[JDTLS_VERSION]
---@field java_debug_adapter { enable: boolean, version: string }
---@field spring_boot_tools { enable: boolean, version: string }
---@field jdk { auto_install: boolean, version: string }
---@field notifications { dap: boolean }
---@field log java-core.Log2Config

---@class java.PartialConfig
Expand All @@ -31,7 +30,6 @@ local V = jdtls_version_map[JDTLS_VERSION]
---@field java_debug_adapter? { enable?: boolean, version?: string }
---@field spring_boot_tools? { enable?: boolean, version?: string }
---@field jdk? { auto_install?: boolean, version?: string }
---@field notifications? { dap?: boolean }
---@field log? java-core.PartialLog2Config

---@type java.Config
Expand Down Expand Up @@ -72,11 +70,6 @@ local config = {
version = V.jdk,
},

notifications = {
-- enable 'Configuring DAP' & 'DAP configured' messages on start up
dap = true,
},

log = {
use_console = true,
use_file = true,
Expand Down