Skip to content

Commit cad260e

Browse files
adonovangopherbot
authored andcommitted
internal/pkgbits: remove dead field
See review comment on CL 580455. Updates golang/go#64581 Change-Id: Ic992a1bf5388ce221a9883f49820c7a9ae85b4d0 Reviewed-on: https://go-review.googlesource.com/c/tools/+/600135 LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Alan Donovan <[email protected]> Reviewed-by: Robert Findley <[email protected]>
1 parent ec1a81b commit cad260e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

internal/pkgbits/decoder.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ type PkgDecoder struct {
2323
// version is the file format version.
2424
version uint32
2525

26-
// aliases determines whether types.Aliases should be created
27-
aliases bool
28-
2926
// sync indicates whether the file uses sync markers.
3027
sync bool
3128

@@ -76,7 +73,6 @@ func (pr *PkgDecoder) SyncMarkers() bool { return pr.sync }
7673
func NewPkgDecoder(pkgPath, input string) PkgDecoder {
7774
pr := PkgDecoder{
7875
pkgPath: pkgPath,
79-
//aliases: aliases.Enabled(),
8076
}
8177

8278
// TODO(mdempsky): Implement direct indexing of input string to

0 commit comments

Comments
 (0)