summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/core/sandbox/modules/io.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/xmake/core/sandbox/modules/io.lua b/xmake/core/sandbox/modules/io.lua
index 7921686f7..69cd22b76 100644
--- a/xmake/core/sandbox/modules/io.lua
+++ b/xmake/core/sandbox/modules/io.lua
@@ -63,22 +63,16 @@ end
-- print file
function sandbox_io_file:print(...)
-
- -- print it
return self:write(vformat(...), "\n")
end
-- printf file
function sandbox_io_file:printf(...)
-
- -- printf it
return self:write(vformat(...))
end
-- writef file
function sandbox_io_file:writef(...)
-
- -- writef it
return self:write(string.format(...))
end