Skip to content

Commit b8dab69

Browse files
committed
Remove unused varargs
1 parent 5513872 commit b8dab69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Graphoon/Node.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ local DEFAULT_MASS = 0.05;
1717
-- @param y - The y coordinate the Node should be spawned at (optional).
1818
-- @param anchor - Wether the node should be locked in place or not (optional).
1919
--
20-
function Node.new( id, x, y, anchor, ... )
20+
function Node.new( id, x, y, anchor )
2121
local self = {};
2222

2323
local px, py = x or 0, y or 0;

0 commit comments

Comments
 (0)