summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-07-13 22:49:05 +0800
committerruki <[email protected]>2019-07-13 22:49:05 +0800
commit98a6a920a3248c7056e9ee131cd48bb1411d1fdf (patch)
treebe68a16cd651b0d48a325517e860f79fe85eb47b
parentd4c9549d251c671502973c208470e0a6cff66bb8 (diff)
remove some redundant comments
-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