Commit 3398322d authored by Mikio Hara's avatar Mikio Hara

net: remove redundant comment on isWildcard

R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/11985043
parent 442e614c
...@@ -103,7 +103,6 @@ func (a *UnixAddr) family() int { ...@@ -103,7 +103,6 @@ func (a *UnixAddr) family() int {
return syscall.AF_UNIX return syscall.AF_UNIX
} }
// isWildcard reports whether a is a wildcard address.
func (a *UnixAddr) isWildcard() bool { func (a *UnixAddr) isWildcard() bool {
return a == nil || a.Name == "" return a == nil || a.Name == ""
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment