Remove io.Writer from fs.File

It was only used in a single test, which now uses plain *os.File instead.
This commit is contained in:
greatroar
2020-09-21 14:21:32 +02:00
parent 9abef3bf1a
commit 1b20f6beec
4 changed files with 32 additions and 41 deletions
-1
View File
@@ -26,7 +26,6 @@ type FS interface {
// File is an open file on a file system.
type File interface {
io.Reader
io.Writer
io.Closer
Fd() uintptr