summaryrefslogtreecommitdiff
path: root/xmake/core/base/utils.lua
diff options
context:
space:
mode:
authorOpportunityLiu <[email protected]>2019-08-26 18:24:26 +0800
committerOpportunityLiu <[email protected]>2019-08-26 18:24:26 +0800
commit172076db9fa929c5b6dd20a733d15cf28ef092aa (patch)
treedd72605248ad7b57179dbe3d34ecdb33faba933e /xmake/core/base/utils.lua
parent4c7f077a102f35428766bb3fddb8a93e30313cc1 (diff)
rename params
Diffstat (limited to 'xmake/core/base/utils.lua')
-rw-r--r--xmake/core/base/utils.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/xmake/core/base/utils.lua b/xmake/core/base/utils.lua
index 584af7eb7..58721cc1e 100644
--- a/xmake/core/base/utils.lua
+++ b/xmake/core/base/utils.lua
@@ -61,11 +61,9 @@ function utils.dump(...)
if values_count == 1 then
dump(values[1], indent or "", diagnosis)
- io.write("\n")
else
for i = 1, values_count do
dump(values[i], indent or string.format("%2d: ", i), diagnosis)
- io.write("\n")
end
end