aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2017-04-29 18:20:39 +0200
committerJakob Unterwurzacher2017-04-29 18:20:39 +0200
commitb66e03486a9839d3422931f81c70ada8fc4a8b4d (patch)
tree67d530c8777797b70e63f7ea8c5a38269911395f
parent6e029a3799816dd6703b2cb573022c7c3fd15c39 (diff)
fusefronted: drop unused file.String() function
This is a very old leftover.
-rw-r--r--internal/fusefrontend/file.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/fusefrontend/file.go b/internal/fusefrontend/file.go
index 111775c..ab35a59 100644
--- a/internal/fusefrontend/file.go
+++ b/internal/fusefrontend/file.go
@@ -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.
//