diff options
author | Jakob Unterwurzacher | 2015-09-05 20:11:20 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-09-05 20:11:20 +0200 |
commit | 7e564f928fef80b0485210603a8aa58b14ca5109 (patch) | |
tree | e011e362d47ae35bf55cc7709a8b47017ec51cca /frontend/node.go | |
parent | 199d3fd79ff03222cf7498418b40e1263f8aa104 (diff) |
Fix size reporting
Diffstat (limited to 'frontend/node.go')
-rw-r--r-- | frontend/node.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/frontend/node.go b/frontend/node.go deleted file mode 100644 index f9b630c..0000000 --- a/frontend/node.go +++ /dev/null @@ -1,17 +0,0 @@ -package frontend - -import ( - "fmt" - "github.com/rfjakob/cluefs/lib/cluefs" -) - -type Node struct { - *cluefs.Node -} - -func NewNode(parent string, name string, fs *FS) *Node { - fmt.Printf("NewNode\n") - return &Node{ - Node: cluefs.NewNode(parent, name, fs.ClueFS), - } -} |