Remove debug print

This commit is contained in:
Robert Machmer 2016-01-09 12:07:01 +01:00
parent 1681c649fb
commit 020713b4c3

View File

@ -65,7 +65,6 @@ function Graph.new()
-- @param anchor - Wether the node should be locked in place or not (optional).
--
function self:addNode( id, x, y, anchor, ... )
print( id, x, y, anchor, parent, path, spritebatch )
assert( not nodes[id], "Node IDs must be unique." );
nodes[id] = Node.new( id, x, y, anchor, ... );
return nodes[id];