lua: eliminate TagCache.set_tag()

This commit is contained in:
Emil Tin
2016-11-12 22:55:18 +01:00
committed by Patrick Niklaus
parent 50090e6447
commit c3aeef4e09
3 changed files with 102 additions and 13 deletions
-8
View File
@@ -24,12 +24,4 @@ function TagCache.get(way,cache,key)
end
end
function TagCache.set(cache,key,value)
if value then
cache[key] = value
else
cache[key] = ''
end
end
return TagCache