aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))
}
}