lib/fs: remove unused readerAt interface

This commit is contained in:
Aliaksandr Valialkin 2020-01-31 15:12:37 +02:00
parent c3d86eef96
commit 011a79da85

View file

@ -21,11 +21,6 @@ type MustReadAtCloser interface {
MustClose()
}
type readerAt interface {
ReadAt(p []byte, off int64) (int, error)
Close() error
}
// ReaderAt implements rand-access reader.
type ReaderAt struct {
f *os.File