It's unused since CL 455716.
Change-Id: I78bf7ad0e546c7dda8e78b911feb6399e1e6e088
Reviewed-on: https://go-review.googlesource.com/c/go/+/498235
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Damien Neil <dneil@google.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
return dirFS(dir)
}
-// containsAny reports whether any bytes in chars are within s.
-func containsAny(s, chars string) bool {
- for i := 0; i < len(s); i++ {
- for j := 0; j < len(chars); j++ {
- if s[i] == chars[j] {
- return true
- }
- }
- }
- return false
-}
-
type dirFS string
func (dir dirFS) Open(name string) (fs.File, error) {