Revision | d95355e7c93ecc82474388e3ed9a6a65c628a37a (tree) |
---|---|
Zeit | 2024-04-05 09:41:09 |
Autor | Fs <Fsu0413@vip....> |
Commiter | Fs |
remove unused variable
@@ -29,7 +29,6 @@ local runCmdScript = function(script) | ||
29 | 29 | end |
30 | 30 | |
31 | 31 | compilerVer.parseVersionNum = function(str) |
32 | - local major, minor, patch | |
33 | 32 | local match = { string.match(str, "(%d+)%.(%d+)%.(%d+)") } |
34 | 33 | if #match > 0 then |
35 | 34 | return setmetatable(match, { __tostring = function(m) return m[1] .. "." .. m[2] .. "." .. m[3] end}) |