mirror of
https://github.com/golang/go
synced 2024-11-17 07:04:44 -07:00
cmd/go/internal/modload: remove unused warnPattern function
Change-Id: I6cf66870952d4c652912dd50a0b9af41bdc79dce Reviewed-on: https://go-review.googlesource.com/c/go/+/185346 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com> Reviewed-by: Jay Conrod <jayconrod@google.com>
This commit is contained in:
parent
0067586953
commit
a05c132064
@ -247,16 +247,6 @@ func pathInModuleCache(dir string) string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
// warnPattern returns list, the result of matching pattern,
|
|
||||||
// but if list is empty then first it prints a warning about
|
|
||||||
// the pattern not matching any packages.
|
|
||||||
func warnPattern(pattern string, list []string) []string {
|
|
||||||
if len(list) == 0 {
|
|
||||||
fmt.Fprintf(os.Stderr, "warning: %q matched no packages\n", pattern)
|
|
||||||
}
|
|
||||||
return list
|
|
||||||
}
|
|
||||||
|
|
||||||
// ImportFromFiles adds modules to the build list as needed
|
// ImportFromFiles adds modules to the build list as needed
|
||||||
// to satisfy the imports in the named Go source files.
|
// to satisfy the imports in the named Go source files.
|
||||||
func ImportFromFiles(gofiles []string) {
|
func ImportFromFiles(gofiles []string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user