summaryrefslogtreecommitdiff
path: root/src/pkg/testing/iotest/reader.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/testing/iotest/reader.go')
-rw-r--r--src/pkg/testing/iotest/reader.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/testing/iotest/reader.go b/src/pkg/testing/iotest/reader.go
index daa6ede08..dcf5565e0 100644
--- a/src/pkg/testing/iotest/reader.go
+++ b/src/pkg/testing/iotest/reader.go
@@ -37,7 +37,6 @@ func (r *halfReader) Read(p []byte) (int, os.Error) {
return r.r.Read(p[0 : (len(p)+1)/2])
}
-
// DataErrReader returns a Reader that returns the final
// error with the last data read, instead of by itself with
// zero bytes of data.