Removing debug print.

This commit is contained in:
Bruce Hill 2018-07-25 13:46:42 -07:00
parent e491a5838a
commit fe47b7c2cb
2 changed files with 0 additions and 2 deletions

View File

@ -26,7 +26,6 @@ local _FILE_CACHE = setmetatable({ }, {
})
local _BROWSE_CACHE = { }
Files.spoof = function(filename, contents)
print("SPOOFING " .. tostring(filename))
_SPOOFED_FILES[filename] = contents
return contents
end

View File

@ -17,7 +17,6 @@ _BROWSE_CACHE = {}
-- Create a fake file and put it in the cache
Files.spoof = (filename, contents)->
print("SPOOFING #{filename}")
_SPOOFED_FILES[filename] = contents
return contents