From 863c9c67a8003388f9e39232cdf41404fac27525 Mon Sep 17 00:00:00 2001 From: David Symonds Date: Wed, 29 Apr 2015 09:51:41 +1000 Subject: [PATCH] go/pointer: Remove a mention of the deleted ImportFromBinary option. Change-Id: I9ca8a5b37afc6ae9603849d233ee6b4976e2b973 Reviewed-on: https://go-review.googlesource.com/9462 Reviewed-by: Alan Donovan --- go/pointer/analysis.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/pointer/analysis.go b/go/pointer/analysis.go index f3b70f13..d02e5369 100644 --- a/go/pointer/analysis.go +++ b/go/pointer/analysis.go @@ -255,7 +255,7 @@ func Analyze(config *Config) (result *Result, err error) { // (This only checks that the package scope is complete, // not that func bodies exist, but it's a good signal.) if !pkg.Object.Complete() { - return nil, fmt.Errorf(`pointer analysis requires a complete program yet package %q was incomplete (don't set loader.Config.ImportFromBinary during loading)`, pkg.Object.Path()) + return nil, fmt.Errorf(`pointer analysis requires a complete program yet package %q was incomplete`, pkg.Object.Path()) } }