Removing debug output

This commit is contained in:
DennisOSRM 2013-01-04 12:49:31 +01:00
parent 7c54d4e62f
commit 4ac5440a4a

View File

@ -71,7 +71,6 @@ local function parse_maxspeed(source)
if string.match(source, "mph") or string.match(source, "mp/h") then if string.match(source, "mph") or string.match(source, "mp/h") then
n = (n*1609)/1000; n = (n*1609)/1000;
end end
io.write("speed: "..n.."\n")
return math.abs(n) return math.abs(n)
end end