Remove unused varargs

This commit is contained in:
Robert Machmer 2016-01-12 14:30:54 +01:00
parent 55138721c1
commit b8dab695bc

View File

@ -17,7 +17,7 @@ local DEFAULT_MASS = 0.05;
-- @param y - The y coordinate the Node should be spawned at (optional).
-- @param anchor - Wether the node should be locked in place or not (optional).
--
function Node.new( id, x, y, anchor, ... )
function Node.new( id, x, y, anchor )
local self = {};
local px, py = x or 0, y or 0;