[luacheck] fix (W211) unused variable sub & gsub

This commit is contained in:
Francois Perrad 2016-07-16 15:56:19 +02:00
parent a95b4f19aa
commit de238d1d17

View File

@ -11,8 +11,8 @@
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
local type = type local type = type
local sub, byte, format = string.sub, string.byte, string.format local byte, format = string.byte, string.format
local match, gmatch, gsub = string.match, string.gmatch, string.gsub local match, gmatch = string.match, string.gmatch
local concat = table.concat local concat = table.concat
local bit = require("bit") local bit = require("bit")
local band, bor, tohex = bit.band, bit.bor, bit.tohex local band, bor, tohex = bit.band, bit.bor, bit.tohex