Remove an unused method

This commit is contained in:
Christian Rocha 2022-01-18 17:19:57 -05:00
parent 764fd321f6
commit 6c015a2aa8

View File

@ -67,14 +67,6 @@ func (f filteredItems) items() []Item {
return agg 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 // FilterMatchesMsg contains data about items matched during filtering. The
// message should be routed to Update for processing. // message should be routed to Update for processing.
type FilterMatchesMsg []filteredItem type FilterMatchesMsg []filteredItem