diff options
Diffstat (limited to 'src/pkg/time/zoneinfo_unix.go')
-rw-r--r-- | src/pkg/time/zoneinfo_unix.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pkg/time/zoneinfo_unix.go b/src/pkg/time/zoneinfo_unix.go index 2a83e0c16..f3ea7b6fd 100644 --- a/src/pkg/time/zoneinfo_unix.go +++ b/src/pkg/time/zoneinfo_unix.go @@ -24,7 +24,6 @@ type data struct { error bool } - func (d *data) read(n int) []byte { if len(d.p) < n { d.p = nil @@ -54,7 +53,6 @@ func (d *data) byte() (n byte, ok bool) { return p[0], true } - // Make a string by stopping at the first NUL func byteString(p []byte) string { for i := 0; i < len(p); i++ { |