fusefronted: drop unused file.String() function

This is a very old leftover.
This commit is contained in:
Jakob Unterwurzacher 2017-04-29 18:20:39 +02:00
parent 6e029a3799
commit b66e03486a

View File

@ -4,7 +4,6 @@ package fusefrontend
import (
"bytes"
"fmt"
"io"
"log"
"os"
@ -141,10 +140,6 @@ func (f *file) createHeader() (fileID []byte, err error) {
return h.ID, err
}
func (f *file) String() string {
return fmt.Sprintf("cryptFile(%s)", f.fd.Name())
}
// doRead - returns "length" plaintext bytes from plaintext offset "off".
// Arguments "length" and "off" do not have to be block-aligned.
//