(results []filefinder.Result)
| 224 | } |
| 225 | |
| 226 | func resultPaths(results []filefinder.Result) []string { |
| 227 | paths := make([]string, len(results)) |
| 228 | for i, r := range results { |
| 229 | paths[i] = r.Path |
| 230 | } |
| 231 | slices.Sort(paths) |
| 232 | return paths |
| 233 | } |
no outgoing calls
no test coverage detected