summaryrefslogtreecommitdiff
path: root/xmake/core/base/string.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/core/base/string.lua')
-rw-r--r--xmake/core/base/string.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/xmake/core/base/string.lua b/xmake/core/base/string.lua
index f54f7b1a3..97945851e 100644
--- a/xmake/core/base/string.lua
+++ b/xmake/core/base/string.lua
@@ -131,13 +131,6 @@ function string.join(items, sep)
return str
end
--- less than
-function string:less(other)
-
- -- < ?
- return string.strcmp(self, other) < 0
-end
-
-- try to format
function string.tryformat(format, ...)