EmptyMatcher is a PathMatcher to match no path
| 74 | |
| 75 | // EmptyMatcher is a PathMatcher to match no path |
| 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 } |
nothing calls this directly
no outgoing calls
no test coverage detected