]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile/internal/gc: remove unused pkgByPath type
authorDave Cheney <dave@cheney.net>
Fri, 7 Apr 2017 22:03:51 +0000 (08:03 +1000)
committerDave Cheney <dave@cheney.net>
Fri, 7 Apr 2017 22:38:44 +0000 (22:38 +0000)
pkgByPath was added in d78c84c4 to eliminate the differences between the
export formats around the time of Go 1.7.

The last remnants of the textual export format was removed by Josh in
39850 making the pkgByPath sorting type unused.

Change-Id: I168816d6401f45119475a4fe5ada00d9ce571a9e
Reviewed-on: https://go-review.googlesource.com/40050
Reviewed-by: Robert Griesemer <gri@golang.org>
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
src/cmd/compile/internal/gc/reflect.go

index eb89789a2fe94e78803a2e9f1e849b51a33432cf..66af2bf01c812e8956df5a6c4795957438015b36 100644 (file)
@@ -1558,12 +1558,6 @@ func (a typesByString) Len() int           { return len(a) }
 func (a typesByString) Less(i, j int) bool { return a[i].s < a[j].s }
 func (a typesByString) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
 
-type pkgByPath []*types.Pkg
-
-func (a pkgByPath) Len() int           { return len(a) }
-func (a pkgByPath) Less(i, j int) bool { return a[i].Path < a[j].Path }
-func (a pkgByPath) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
-
 func dalgsym(t *types.Type) *types.Sym {
        var s *types.Sym
        var hashfunc *types.Sym