mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.set: Rename method argument to avoid name clash [luacheck]
This commit is contained in:
parent
b496bcc379
commit
a83b428dd8
1 changed files with 3 additions and 3 deletions
|
@ -85,9 +85,9 @@ function new(list)
|
|||
items[item] = nil;
|
||||
end
|
||||
|
||||
function set:add_list(list)
|
||||
if list then
|
||||
for _, item in ipairs(list) do
|
||||
function set:add_list(item_list)
|
||||
if item_list then
|
||||
for _, item in ipairs(item_list) do
|
||||
items[item] = true;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue