Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
kair8m committed Nov 25, 2023
1 parent 1094422 commit fcca337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lsp_signature/helper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ end
-- from vim.lsp.util deprecated function
helper.trim_empty_lines = function(lines)
local new_list = {}
for i, str in ipairs(lines) do
for _, str in ipairs(lines) do
if str ~= '' and str then
table.insert(new_list, str)
end
Expand Down

0 comments on commit fcca337

Please sign in to comment.