Comparison

util/timer.lua @ 4751:0c7ae4bfc835

util.timer: Remove unused function imports
author Matthew Wild <mwild1@gmail.com>
date Sat, 28 Apr 2012 02:41:53 +0100
parent 4413:ffa4bed1b716
child 4808:07d0a3a75c8a
comparison
equal deleted inserted replaced
4750:b3525f3c2fee 4751:0c7ae4bfc835
13 13
14 local math_min = math.min 14 local math_min = math.min
15 local math_huge = math.huge 15 local math_huge = math.huge
16 local get_time = require "socket".gettime; 16 local get_time = require "socket".gettime;
17 local t_insert = table.insert; 17 local t_insert = table.insert;
18 local t_remove = table.remove; 18 local pairs = pairs;
19 local ipairs, pairs = ipairs, pairs;
20 local type = type; 19 local type = type;
21 20
22 local data = {}; 21 local data = {};
23 local new_data = {}; 22 local new_data = {};
24 23