diff options
Diffstat (limited to 'src/pkg/compress/gzip/gunzip.go')
| -rw-r--r-- | src/pkg/compress/gzip/gunzip.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/compress/gzip/gunzip.go b/src/pkg/compress/gzip/gunzip.go index 07906cd38..3dbfeca65 100644 --- a/src/pkg/compress/gzip/gunzip.go +++ b/src/pkg/compress/gzip/gunzip.go @@ -220,6 +220,4 @@ func (z *Inflater) Read(p []byte) (n int, err os.Error) { } // Calling Close does not close the wrapped io.Reader originally passed to NewInflater. -func (z *Inflater) Close() os.Error { - return z.inflater.Close(); -} +func (z *Inflater) Close() os.Error { return z.inflater.Close() } |
