Comparison

net/server_epoll.lua @ 10091:bd547587f48c

net.server_epoll: Remove unused local [luacheck]
author Kim Alvefur <zash@zash.se>
date Fri, 26 Jul 2019 21:23:53 +0200
parent 10089:90e459f48cbd
child 10098:dda1c7ccb209
comparison
equal deleted inserted replaced
10090:cdcf26331b9f 10091:bd547587f48c
7 7
8 8
9 local t_insert = table.insert; 9 local t_insert = table.insert;
10 local t_concat = table.concat; 10 local t_concat = table.concat;
11 local setmetatable = setmetatable; 11 local setmetatable = setmetatable;
12 local tostring = tostring;
13 local pcall = pcall; 12 local pcall = pcall;
14 local type = type; 13 local type = type;
15 local next = next; 14 local next = next;
16 local pairs = pairs; 15 local pairs = pairs;
17 local logger = require "util.logger"; 16 local logger = require "util.logger";