diff options
author | Matthew Wild <mwild1@gmail.com> | 2017-09-26 18:30:34 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2017-09-26 18:30:34 +0100 |
commit | 8f52dbb93790fd42e2351808b7f3fb16046527ee (patch) | |
tree | 605e6c59af93525e4240682e3fc9773f07957368 | |
parent | 89e3528e802593b5719be0dd7aafdb85eba5e00f (diff) | |
download | prosody-8f52dbb93790fd42e2351808b7f3fb16046527ee.tar.gz prosody-8f52dbb93790fd42e2351808b7f3fb16046527ee.zip |
util.throttle: Remove unused import of floor() [luacheck]
-rw-r--r-- | util/throttle.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/util/throttle.lua b/util/throttle.lua index a8191886..1012f78a 100644 --- a/util/throttle.lua +++ b/util/throttle.lua @@ -1,7 +1,6 @@ local gettime = require "util.time".now local setmetatable = setmetatable; -local floor = math.floor; local _ENV = nil; |