| 207 | } |
| 208 | |
| 209 | type repoSearchWriter struct { |
| 210 | results []*search.Result |
| 211 | columnWidth uint |
| 212 | failOnNoResult bool |
| 213 | } |
| 214 | |
| 215 | func (r *repoSearchWriter) WriteTable(out io.Writer) error { |
| 216 | if len(r.results) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected