aboutsummaryrefslogtreecommitdiff
path: root/weed/storage/volume.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-09-09 10:03:41 -0700
committerChris Lu <chris.lu@gmail.com>2019-09-09 10:03:41 -0700
commit02710f96244903bb99fc6376531159d18735afdc (patch)
tree8dc938a457fd9c30b3ed772db35f5cad246e3836 /weed/storage/volume.go
parent0f861d23a29d4ecb0f5a020ea68c211fcdd123c9 (diff)
downloadseaweedfs-02710f96244903bb99fc6376531159d18735afdc.tar.xz
seaweedfs-02710f96244903bb99fc6376531159d18735afdc.zip
refactoring: remove unused functions
Diffstat (limited to 'weed/storage/volume.go')
-rw-r--r--weed/storage/volume.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/weed/storage/volume.go b/weed/storage/volume.go
index 9c3f74ca4..301610ab6 100644
--- a/weed/storage/volume.go
+++ b/weed/storage/volume.go
@@ -140,24 +140,6 @@ func (v *Volume) IndexFileSize() uint64 {
return v.nm.IndexFileSize()
}
-func (v *Volume) IndexFileContent() ([]byte, error) {
- v.dataFileAccessLock.Lock()
- defer v.dataFileAccessLock.Unlock()
- if v.nm == nil {
- return nil, nil
- }
- return v.nm.IndexFileContent()
-}
-
-func (v *Volume) IndexFileName() string {
- v.dataFileAccessLock.Lock()
- defer v.dataFileAccessLock.Unlock()
- if v.nm == nil {
- return ""
- }
- return v.nm.IndexFileName()
-}
-
// Close cleanly shuts down this volume
func (v *Volume) Close() {
v.dataFileAccessLock.Lock()