Removed unused local function: find()

This commit is contained in:
rxi 2014-04-12 13:39:52 +01:00
parent 3c799c6eb6
commit 571e1489c3

View File

@ -304,12 +304,6 @@ local map = function(t, fn)
return res
end
local find = function(t, value)
for k, v in pairs(t) do
if v == value then return k end
end
end
local trace = function(...)
print("[lovebird] " .. table.concat(map({...}, tostring), " "))
end