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 | ce25b6cbe15e1f10339956c9c3cc6a091f5ec585 (patch) | |
tree | d225de03498ac957baf1c49e8b788a1da8c80448 /util | |
parent | 096514c6702ceb70e3edd8e34a8c8244f8ca26cd (diff) | |
download | prosody-ce25b6cbe15e1f10339956c9c3cc6a091f5ec585.tar.gz prosody-ce25b6cbe15e1f10339956c9c3cc6a091f5ec585.zip |
util.timer: Remove unused function imports
Diffstat (limited to 'util')
-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 = {}; |