# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1227243995 0
# Node ID 34e88709b1b50930e19f4a539ea715e67cf77fed
# Parent  cc26368294a30ea6caacfde7290629ac98bbd93a
Remove old TODO

diff -r cc26368294a3 -r 34e88709b1b5 util/jid.lua
--- 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