diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-21 05:06:35 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-21 05:06:35 +0000 |
commit | 9122ff00399f77e31b902ac431288341dba70e64 (patch) | |
tree | c897cae69586906184d96f1f84b0aff4acfce357 /util/jid.lua | |
parent | 430180dafb4f6f839aa04871ed316ef6bb6f3578 (diff) | |
download | prosody-9122ff00399f77e31b902ac431288341dba70e64.tar.gz prosody-9122ff00399f77e31b902ac431288341dba70e64.zip |
Remove old TODO
Diffstat (limited to 'util/jid.lua')
-rw-r--r-- | util/jid.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/util/jid.lua b/util/jid.lua index aad579e9..efa79b38 100644 --- a/util/jid.lua +++ b/util/jid.lua @@ -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 |