From 6c015a2aa8afc9058c1c6e4bf678990c0e488b77 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 18 Jan 2022 17:19:57 -0500 Subject: [PATCH] Remove an unused method --- list/list.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/list/list.go b/list/list.go index 4850390..ec33170 100644 --- a/list/list.go +++ b/list/list.go @@ -67,14 +67,6 @@ func (f filteredItems) items() []Item { return agg } -func (f filteredItems) matches() [][]int { - agg := make([][]int, len(f)) - for i, v := range f { - agg[i] = v.matches - } - return agg -} - // FilterMatchesMsg contains data about items matched during filtering. The // message should be routed to Update for processing. type FilterMatchesMsg []filteredItem