aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-01-17 03:19:11 -0800
committerchrislu <chris.lu@gmail.com>2022-01-17 03:19:11 -0800
commit77d9993f38845ba3aa2af78a5f3d6ddb93093a48 (patch)
tree0fc0a013ea225c8b361b13135d897b333ddb741f
parentf710d5ffcaced286062dcbe99bf5fcebdb73efc0 (diff)
downloadseaweedfs-77d9993f38845ba3aa2af78a5f3d6ddb93093a48.tar.xz
seaweedfs-77d9993f38845ba3aa2af78a5f3d6ddb93093a48.zip
remove unused variables
-rw-r--r--weed/filesys/filehandle.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/weed/filesys/filehandle.go b/weed/filesys/filehandle.go
index 738423b6a..ef8f62938 100644
--- a/weed/filesys/filehandle.go
+++ b/weed/filesys/filehandle.go
@@ -28,11 +28,9 @@ type FileHandle struct {
sync.Mutex
f *File
- RequestId fuse.RequestID // unique ID for request
- NodeId fuse.NodeID // file or directory the request is about
- Uid uint32 // user ID of process making request
- Gid uint32 // group ID of process making request
- writeOnly bool
+ NodeId fuse.NodeID // file or directory the request is about
+ Uid uint32 // user ID of process making request
+ Gid uint32 // group ID of process making request
isDeleted bool
}