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 | fff24cfdbb7e1e23596e95c429590eb5420ff432 (patch) | |
tree | 605e6c59af93525e4240682e3fc9773f07957368 /util/throttle.lua | |
parent | 14304764d845ced9c9d500f2c805f1d80227e07b (diff) | |
download | prosody-fff24cfdbb7e1e23596e95c429590eb5420ff432.tar.gz prosody-fff24cfdbb7e1e23596e95c429590eb5420ff432.zip |
util.throttle: Remove unused import of floor() [luacheck]
Diffstat (limited to 'util/throttle.lua')
-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; |