aboutsummaryrefslogtreecommitdiffstats
path: root/util/timer.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-04-28 02:41:53 +0100
committerMatthew Wild <mwild1@gmail.com>2012-04-28 02:41:53 +0100
commit465460b13f6b108ce2f0a3e09da5b7eeb73361c3 (patch)
treed225de03498ac957baf1c49e8b788a1da8c80448 /util/timer.lua
parente25c402ab08bb19cf7e36ee12a139736583a91c5 (diff)
downloadprosody-465460b13f6b108ce2f0a3e09da5b7eeb73361c3.tar.gz
prosody-465460b13f6b108ce2f0a3e09da5b7eeb73361c3.zip
util.timer: Remove unused function imports
Diffstat (limited to 'util/timer.lua')
-rw-r--r--util/timer.lua3
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 = {};