diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-04 16:38:56 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-04 16:38:56 +0100 |
commit | 5b245d20fe2502033248685276d72ce828cfe220 (patch) | |
tree | 3cd405b47a830dd9431a6858a8a25e7c9cb5754f | |
parent | de6e734596d3abb660177b2cee47cf2ad5299d8e (diff) | |
download | prosody-5b245d20fe2502033248685276d72ce828cfe220.tar.gz prosody-5b245d20fe2502033248685276d72ce828cfe220.zip |
util.logger: Remove unused locals
-rw-r--r-- | util/logger.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/util/logger.lua b/util/logger.lua index 3d1f1c8b..8010e8ad 100644 --- a/util/logger.lua +++ b/util/logger.lua @@ -6,10 +6,7 @@ -- COPYING file in the source package for more information. -- -local pcall = pcall; - -local find = string.find; -local ipairs, pairs, setmetatable = ipairs, pairs, setmetatable; +local pairs = pairs; local _ENV = nil; |