(f string)
| 76 | type EmptyMatcher struct{} |
| 77 | |
| 78 | func (EmptyMatcher) Matches(f string) (bool, error) { return false, nil } |
| 79 | func (EmptyMatcher) MatchesEntireDir(f string) (bool, error) { return false, nil } |
| 80 | |
| 81 | var _ PathMatcher = EmptyMatcher{} |
nothing calls this directly
no outgoing calls
no test coverage detected