From 020713b4c3fa557bce04dfaade715c20db84c0a0 Mon Sep 17 00:00:00 2001 From: Robert Machmer Date: Sat, 9 Jan 2016 12:07:01 +0100 Subject: [PATCH] Remove debug print --- fd/Graph.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/fd/Graph.lua b/fd/Graph.lua index 75e3104..7d6e2c5 100644 --- a/fd/Graph.lua +++ b/fd/Graph.lua @@ -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];