util.xml: Remove unused parameter (thanks, luacheck)

This commit is contained in:
Matthew Wild 2015-05-06 19:39:28 +01:00
parent fd58c2c49c
commit ed2dc14ab3

View file

@ -39,7 +39,7 @@ local parse_xml = (function()
function handler:CharacterData(data)
stanza:text(data);
end
function handler:EndElement(tagname)
function handler:EndElement()
stanza:up();
end
local parser = lxp.new(handler, "\1");