usermanager: Reduced some code
authorWaqas Hussain <waqas20@gmail.com>
Sat, 25 Jul 2009 19:18:37 +0500
changeset 1589 812ae3be7bed
parent 1588 9107d3221ccb
child 1590 638761692663
usermanager: Reduced some code
core/usermanager.lua
--- a/core/usermanager.lua	Sat Jul 25 19:15:05 2009 +0500
+++ b/core/usermanager.lua	Sat Jul 25 19:18:37 2009 +0500
@@ -63,9 +63,7 @@
 end
 
 function get_supported_methods(host)
-  local methods = {["PLAIN"] = true}; -- TODO this should be taken from the config
-	methods["DIGEST-MD5"] = true;
-	return methods;
+	return {["PLAIN"] = true, ["DIGEST-MD5"] = true}; -- TODO this should be taken from the config
 end
 
 function is_admin(jid)