From af1a89686802bf868eb9ba034e50882e2adf5069 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 31 May 2024 10:18:57 +0200 Subject: tools/syz-testbed: remove unused variable --- tools/syz-testbed/stats.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/syz-testbed/stats.go b/tools/syz-testbed/stats.go index d45982c2b..8a3a368eb 100644 --- a/tools/syz-testbed/stats.go +++ b/tools/syz-testbed/stats.go @@ -274,7 +274,6 @@ func (view StatView) AlignedStatsTable(field string) (*Table, error) { } } table := NewTable("Property") - cells := make(map[string]map[string]string) for _, group := range view.Groups { table.AddColumn(group.Name) minLen := group.minResultLength() @@ -294,9 +293,6 @@ func (view StatView) AlignedStatsTable(field string) (*Table, error) { } } for key, sample := range samples { - if _, ok := cells[key]; !ok { - cells[key] = make(map[string]string) - } table.Set(key, group.Name, NewValueCell(sample)) } } -- cgit mrf-deployment