]> Cypherpunks repositories - gostls13.git/commitdiff
net: remove redundant comment on isWildcard
authorMikio Hara <mikioh.mikioh@gmail.com>
Mon, 29 Jul 2013 14:26:11 +0000 (23:26 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Mon, 29 Jul 2013 14:26:11 +0000 (23:26 +0900)
R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/11985043

src/pkg/net/unixsock_posix.go

index 497b5beea9655dd6a178752daa67c7de39d558d2..00f69d12012b4b7380bec8bddf00e92fa8958b0f 100644 (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 == ""
 }