aboutsummaryrefslogtreecommitdiff
path: root/src/pkg
diff options
context:
space:
mode:
authorMikio Hara <mikioh.mikioh@gmail.com>2013-07-29 23:26:11 +0900
committerMikio Hara <mikioh.mikioh@gmail.com>2013-07-29 23:26:11 +0900
commit3398322d5ebaf7b870f07aebae92fc2fd047704c (patch)
tree581d43274e208964fb8ee1292e42aec3e6e28dd0 /src/pkg
parent442e614caba7aee4f291e801b1d7ed4e8b2d9707 (diff)
downloadgo-3398322d5ebaf7b870f07aebae92fc2fd047704c.tar.xz
net: remove redundant comment on isWildcard
R=golang-dev, dave CC=golang-dev https://golang.org/cl/11985043
Diffstat (limited to 'src/pkg')
-rw-r--r--src/pkg/net/unixsock_posix.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/net/unixsock_posix.go b/src/pkg/net/unixsock_posix.go
index 497b5beea9..00f69d1201 100644
--- a/src/pkg/net/unixsock_posix.go
+++ b/src/pkg/net/unixsock_posix.go
@@ -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 == ""
}