Changeset

10114:2f7628804db6

net.adns: Remove unused local [luacheck]
author Kim Alvefur <zash@zash.se>
date Tue, 30 Jul 2019 02:36:15 +0200
parents 10113:66a9bc2d5c8d
children 10115:c0bd5daa9c7f
files net/adns.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/net/adns.lua	Tue Jul 30 02:35:28 2019 +0200
+++ b/net/adns.lua	Tue Jul 30 02:36:15 2019 +0200
@@ -11,7 +11,7 @@
 
 local log = require "util.logger".init("adns");
 
-local coroutine, tostring, pcall = coroutine, tostring, pcall;
+local coroutine, pcall = coroutine, pcall;
 local setmetatable = setmetatable;
 
 local function dummy_send(sock, data, i, j) return (j-i)+1; end -- luacheck: ignore 212