Skip to content

Commit dbf6bd8

Browse files
committed
fix: lint error
1 parent 9060b97 commit dbf6bd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lua/java-refactor/action.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ function Action:override_methods_prompt(params)
301301
end
302302

303303
---@param selections jdtls.ImportSelection[]
304-
function Action:choose_imports(selections)
304+
function Action.choose_imports(selections)
305305
local selected_candidates = {}
306306

307307
for _, selection in ipairs(selections) do

lua/java-refactor/client-command-handlers.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ local M = {
7373

7474
local selections = params[2]
7575
local ok, result = pcall(function()
76-
return action:choose_imports(selections)
76+
return action.choose_imports(selections)
7777
end)
7878

7979
if not ok then

0 commit comments

Comments
 (0)