util/jid.lua
changeset 368 34e88709b1b5
parent 367 cc26368294a3
child 369 42de92add67b
--- a/util/jid.lua	Fri Nov 21 05:06:01 2008 +0000
+++ b/util/jid.lua	Fri Nov 21 05:06:35 2008 +0000
@@ -5,7 +5,6 @@
 
 function split(jid)
 	if not jid then return; end
-	-- TODO verify JID, and return; if invalid
 	local node, nodelen = match(jid, "^([^@]+)@()");
 	local host, hostlen = match(jid, "^([^@/]+)()", nodelen)
 	if node and not host then return nil, nil, nil; end