From 5b245d20fe2502033248685276d72ce828cfe220 Mon Sep 17 00:00:00 2001
From: Kim Alvefur <zash@zash.se>
Date: Thu, 4 Feb 2016 16:38:56 +0100
Subject: util.logger: Remove unused locals

---
 util/logger.lua | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

(limited to 'util')

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;
 
-- 
cgit v1.2.3


From d7ef1df39b29dc02f7b0ca056b5f15c8fad4e273 Mon Sep 17 00:00:00 2001
From: Kim Alvefur <zash@zash.se>
Date: Thu, 4 Feb 2016 16:40:32 +0100
Subject: util.logger: Silence luacheck warning

---
 util/logger.lua | 1 +
 1 file changed, 1 insertion(+)

(limited to 'util')

diff --git a/util/logger.lua b/util/logger.lua
index 8010e8ad..e72b29bc 100644
--- a/util/logger.lua
+++ b/util/logger.lua
@@ -5,6 +5,7 @@
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
 --
+-- luacheck: ignore 213/level
 
 local pairs = pairs;
 
-- 
cgit v1.2.3