Software /
code /
prosody
Changeset
368:34e88709b1b5
Remove old TODO
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 21 Nov 2008 05:06:35 +0000 |
parents | 367:cc26368294a3 |
children | 369:42de92add67b |
files | util/jid.lua |
diffstat | 1 files changed, 0 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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