go.tools/cmd/godex: remove spurious println

TBR=adonovan

TBR=adonovan
R=adonovan
CC=golang-codereviews
https://golang.org/cl/82040043
This commit is contained in:
Robert Griesemer 2014-03-28 15:26:40 -07:00
parent 723686bb4b
commit 4775a5ed46
1 changed files with 0 additions and 1 deletions

View File

@ -74,7 +74,6 @@ func findExportFile(searchpaths []string, pkgpath string) (string, error) {
pkgdir + "lib" + name + ".a",
pkgfullpath + ".o",
} {
println("trying", filepath)
fi, err := os.Stat(filepath)
if err == nil && !fi.IsDir() {
return filepath, nil