# HG changeset patch # User Kim Alvefur # Date 1564446975 -7200 # Node ID 2f7628804db6389774a4b755f420bf0edc9bc127 # Parent 66a9bc2d5c8de98f2a6965966eef17eb5d135c06 net.adns: Remove unused local [luacheck] diff -r 66a9bc2d5c8d -r 2f7628804db6 net/adns.lua --- 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