We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9060b97 commit dbf6bd8Copy full SHA for dbf6bd8
lua/java-refactor/action.lua
@@ -301,7 +301,7 @@ function Action:override_methods_prompt(params)
301
end
302
303
---@param selections jdtls.ImportSelection[]
304
-function Action:choose_imports(selections)
+function Action.choose_imports(selections)
305
local selected_candidates = {}
306
307
for _, selection in ipairs(selections) do
lua/java-refactor/client-command-handlers.lua
@@ -73,7 +73,7 @@ local M = {
73
74
local selections = params[2]
75
local ok, result = pcall(function()
76
- return action:choose_imports(selections)
+ return action.choose_imports(selections)
77
end)
78
79
if not ok then
0 commit comments