aboutsummaryrefslogtreecommitdiffstats
path: root/util/timer.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-02-21 10:36:37 +0100
committerKim Alvefur <zash@zash.se>2015-02-21 10:36:37 +0100
commit3015aac8bcb38ed2d00b8f5205bd54d82b96e71a (patch)
treef7609b77dfead0a8d6994597c5799196676080bd /util/timer.lua
parent2b0b78b8b0210906d14f52f70fffefac2a744dba (diff)
downloadprosody-3015aac8bcb38ed2d00b8f5205bd54d82b96e71a.tar.gz
prosody-3015aac8bcb38ed2d00b8f5205bd54d82b96e71a.zip
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Diffstat (limited to 'util/timer.lua')
-rw-r--r--util/timer.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/timer.lua b/util/timer.lua
index 0e10e144..3713625d 100644
--- a/util/timer.lua
+++ b/util/timer.lua
@@ -17,7 +17,7 @@ local type = type;
local data = {};
local new_data = {};
-module "timer"
+local _ENV = nil;
local _add_task;
if not server.event then
@@ -78,6 +78,6 @@ else
end
end
-add_task = _add_task;
-
-return _M;
+return {
+ add_task = _add_task;
+};