net.xmppclient_listener: Add small comment
[prosody.git] / net / http.lua
index 24828ffeb8d848af6cdd12b01d9c1695eef6ca33..b39cc6fbc7de5d2940e61e5da41f2472eb194c5c 100644 (file)
@@ -15,7 +15,6 @@ local tonumber, tostring, pairs, xpcall, select, debug_traceback, char =
 local log = require "util.logger".init("http");
 local print = function () end
 
-local urlcodes = setmetatable({}, { __index = function (t, k) t[k] = char(tonumber("0x"..k)); return t[k]; end });
 local urlencode = function (s) return s and (s:gsub("%W", function (c) return string.format("%%%02x", c:byte()); end)); end
 
 module "http"