aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files.lua1
-rw-r--r--files.moon1
2 files changed, 0 insertions, 2 deletions
diff --git a/files.lua b/files.lua
index 0504faf..72d9a43 100644
--- a/files.lua
+++ b/files.lua
@@ -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
diff --git a/files.moon b/files.moon
index 1a9c50a..04bebdb 100644
--- a/files.moon
+++ b/files.moon
@@ -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