aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-05-31 10:18:57 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-06-03 15:04:36 +0000
commitaf1a89686802bf868eb9ba034e50882e2adf5069 (patch)
tree27a93dc5f852c11762f6dbc523d7c5a2dabac85d
parent49b158db460b8b8d4144d5869453a1936639aa2b (diff)
tools/syz-testbed: remove unused variable
-rw-r--r--tools/syz-testbed/stats.go4
1 files changed, 0 insertions, 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))
}
}