Fix with asset_helper

Initial cleanup of Sync module
This commit is contained in:
Alexander Bock
2018-02-24 00:46:28 -05:00
parent c1c6e1397c
commit ee7e1b9b96
7 changed files with 105 additions and 168 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
local tableLength = function(table)
local count = 0
for _ in pairs(nodes) do count = count + 1 end
for _ in pairs(table) do count = count + 1 end
return count
end