util.xml: Remove unused parameter (thanks, luacheck)
authorMatthew Wild <mwild1@gmail.com>
Wed, 06 May 2015 19:39:28 +0100
changeset 6672 7da8b6bc0966
parent 6671 f6f39c2f1b1f
child 6673 5e72f7aadbcc
util.xml: Remove unused parameter (thanks, luacheck)
util/xml.lua
--- a/util/xml.lua	Wed May 06 19:38:29 2015 +0100
+++ b/util/xml.lua	Wed May 06 19:39:28 2015 +0100
@@ -39,7 +39,7 @@
 		function handler:CharacterData(data)
 			stanza:text(data);
 		end
-		function handler:EndElement(tagname)
+		function handler:EndElement()
 			stanza:up();
 		end
 		local parser = lxp.new(handler, "\1");