Skip to content

Commit 378bea7

Browse files
committed
Simplified fix - minimal changes (Sun Nov 30 21:55:28 PST 2025)
1 parent e9a0f9f commit 378bea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/treewalker/targets.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function M.out(node)
1818
-- but does fail on CI. TODO figure out the differences)
1919
if nodes.is_comment_node(node) or nodes.is_augment_target(node) then
2020
-- Try moving down first - this works for Java on CI
21-
local down_node, down_row = M.down(node, nodes.get_srow(node))
21+
local down_node = M.down(node, nodes.get_srow(node))
2222
if down_node then
2323
node = down_node
2424
else

0 commit comments

Comments
 (0)