fs: remove file.Name() from interface

The only user was archiver.fileSaver.
This commit is contained in:
Michael Eischer
2024-10-18 22:29:03 +02:00
parent 0c711f5605
commit a7b13bd603
2 changed files with 1 additions and 6 deletions
-1
View File
@@ -34,5 +34,4 @@ type File interface {
Readdir(int) ([]os.FileInfo, error)
Seek(int64, int) (int64, error)
Stat() (os.FileInfo, error)
Name() string
}