fs: remove unused methods from File interface

This commit is contained in:
Michael Eischer 2024-08-27 15:15:27 +02:00
parent f0329bb4e6
commit 6c16733dfd
2 changed files with 0 additions and 10 deletions

View file

@ -29,9 +29,7 @@ type File interface {
io.Reader
io.Closer
Fd() uintptr
Readdirnames(n int) ([]string, error)
Seek(int64, int) (int64, error)
Stat() (os.FileInfo, error)
Name() string
}