Remove old TODO

This commit is contained in:
Matthew Wild 2008-11-21 05:06:35 +00:00
parent 430180dafb
commit 9122ff0039

View file

@ -5,7 +5,6 @@ module "jid"
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