diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-28 02:41:53 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-28 02:41:53 +0100 |
commit | 465460b13f6b108ce2f0a3e09da5b7eeb73361c3 (patch) | |
tree | d225de03498ac957baf1c49e8b788a1da8c80448 | |
parent | e25c402ab08bb19cf7e36ee12a139736583a91c5 (diff) | |
download | prosody-465460b13f6b108ce2f0a3e09da5b7eeb73361c3.tar.gz prosody-465460b13f6b108ce2f0a3e09da5b7eeb73361c3.zip |
util.timer: Remove unused function imports
-rw-r--r-- | util/timer.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/timer.lua b/util/timer.lua index d5b66473..d36fb8c4 100644 --- a/util/timer.lua +++ b/util/timer.lua @@ -15,8 +15,7 @@ local math_min = math.min local math_huge = math.huge local get_time = require "socket".gettime; local t_insert = table.insert; -local t_remove = table.remove; -local ipairs, pairs = ipairs, pairs; +local pairs = pairs; local type = type; local data = {}; |