From: Alan Donovan Date: Fri, 16 Nov 2018 21:51:33 +0000 (-0500) Subject: cmd/vet: remove pkgfact analyzer, left in by mistake X-Git-Tag: go1.12beta1~319 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1f388bc80628f38b033fb229b76997d8f5660c10;p=gostls13.git cmd/vet: remove pkgfact analyzer, left in by mistake Also, document process for updating vendored x/tools. Change-Id: I826744603ae0752e508a6db7334a2bf9adaf1289 Reviewed-on: https://go-review.googlesource.com/c/149963 Run-TryBot: Alan Donovan TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/vendor/README b/src/cmd/vendor/README index 740905c652..7eb97a1b9b 100644 --- a/src/cmd/vendor/README +++ b/src/cmd/vendor/README @@ -19,3 +19,7 @@ make govendor work and will create the .cache folder in $GOROOT as a side-effect. Please make sure to delete the directory and not to include the directory in the commit by accident. + +The vendored copy of golang.org/x/tools is maintained by +running the update-xtools.sh script in this directory, +not by govendor. \ No newline at end of file diff --git a/src/cmd/vet/main.go b/src/cmd/vet/main.go index 16ce61980f..3ea781a7d4 100644 --- a/src/cmd/vet/main.go +++ b/src/cmd/vet/main.go @@ -20,7 +20,6 @@ import ( "golang.org/x/tools/go/analysis/passes/loopclosure" "golang.org/x/tools/go/analysis/passes/lostcancel" "golang.org/x/tools/go/analysis/passes/nilfunc" - "golang.org/x/tools/go/analysis/passes/pkgfact" "golang.org/x/tools/go/analysis/passes/printf" "golang.org/x/tools/go/analysis/passes/shift" "golang.org/x/tools/go/analysis/passes/stdmethods" @@ -61,7 +60,6 @@ func main() { loopclosure.Analyzer, lostcancel.Analyzer, nilfunc.Analyzer, - pkgfact.Analyzer, printf.Analyzer, shift.Analyzer, stdmethods.Analyzer,