# HG changeset patch # User Kim Alvefur # Date 1538311724 -7200 # Node ID b4a82b726495249fb57a8a025e93cd779a6542e5 # Parent 0a8ddd855587e436b20f1a7e85bedb9a4faeca50 mod_admin_telnet: Remove unused variable [luacheck] diff -r 0a8ddd855587 -r b4a82b726495 plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Sun Sep 30 14:38:32 2018 +0200 +++ b/plugins/mod_admin_telnet.lua Sun Sep 30 14:48:44 2018 +0200 @@ -1300,7 +1300,7 @@ function stats_methods:summary() local statistics = require "util.statistics"; for _, stat_info in ipairs(self) do - local name, type, value, data = stat_info[1], stat_info[2], stat_info[3], stat_info[4]; + local type, value, data = stat_info[2], stat_info[3], stat_info[4]; if data and data.samples then table.insert(stat_info.output, string.format("Count: %d (%d captured)", data.count,