net: remove redundant comment on isWildcard

R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/11985043
This commit is contained in:
Mikio Hara 2013-07-29 23:26:11 +09:00
parent 442e614cab
commit 3398322d5e
1 changed files with 0 additions and 1 deletions

View File

@ -103,7 +103,6 @@ func (a *UnixAddr) family() int {
return syscall.AF_UNIX
}
// isWildcard reports whether a is a wildcard address.
func (a *UnixAddr) isWildcard() bool {
return a == nil || a.Name == ""
}