From: Robert Griesemer Date: Wed, 12 Jan 2011 05:24:44 +0000 (-0800) Subject: godoc: remove TODO (bug257.go can now be indexed) X-Git-Tag: weekly.2011-01-12~8 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7b4a4d3788df6cb55bd35ecf5180ba40a422e313;p=gostls13.git godoc: remove TODO (bug257.go can now be indexed) Pending CL 3752044. R=r, r2 CC=golang-dev https://golang.org/cl/3949042 --- diff --git a/src/cmd/godoc/index.go b/src/cmd/godoc/index.go index 63b99f1934..ba6fe9acde 100644 --- a/src/cmd/godoc/index.go +++ b/src/cmd/godoc/index.go @@ -666,12 +666,6 @@ func (x *Indexer) addFile(filename string) *ast.File { func (x *Indexer) visitFile(dirname string, f *os.FileInfo) { - // for now, exclude bug257.go as it causes problems with suffixarray - // TODO fix index/suffixarray - if f.Name == "bug257.go" { - return - } - if !isGoFile(f) { return }