Change-Id: Ie4facdcab4b35cf7d350c4b8fa06a3c5a0c6caeb
Reviewed-on: https://go-review.googlesource.com/108875
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
return ""
}
- // The "s != f.Sym" check here is unnecessary and causes blank
- // input/receiver parameters to receive vargen numbers
- // below. However, this is consistent with the logic it
- // replaces, so we keep it for now to appease toolstash-check.
- //
- // TODO(mdempsky): Simplify to just "if s.Name == "_"".
- if s != f.Sym && s.Name == "_" {
+ if s.Name == "_" {
return "_"
}