Remove unnecessary key declaration
This commit is contained in:
@ -75,7 +75,7 @@ local function ProcessVariables(reqId, ...)
|
|||||||
local arg = {...}
|
local arg = {...}
|
||||||
local msg = ""
|
local msg = ""
|
||||||
|
|
||||||
for k, v in pairs(arg) do
|
for _, v in pairs(arg) do
|
||||||
if(type(v) == "string") then
|
if(type(v) == "string") then
|
||||||
-- Special case for empty string parsing
|
-- Special case for empty string parsing
|
||||||
if(#v == 0) then
|
if(#v == 0) then
|
||||||
|
|||||||
Reference in New Issue
Block a user