aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/lfs/content_store.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/lfs/content_store.go b/modules/lfs/content_store.go
index c794a1fecc..0eedf4de17 100644
--- a/modules/lfs/content_store.go
+++ b/modules/lfs/content_store.go
@@ -8,7 +8,6 @@ import (
"crypto/sha256"
"encoding/hex"
"errors"
- "fmt"
"hash"
"io"
"os"
@@ -24,21 +23,6 @@ var (
ErrSizeMismatch = errors.New("Content size does not match")
)
-// ErrRangeNotSatisfiable represents an error which request range is not satisfiable.
-type ErrRangeNotSatisfiable struct {
- FromByte int64
-}
-
-// IsErrRangeNotSatisfiable returns true if the error is an ErrRangeNotSatisfiable
-func IsErrRangeNotSatisfiable(err error) bool {
- _, ok := err.(ErrRangeNotSatisfiable)
- return ok
-}
-
-func (err ErrRangeNotSatisfiable) Error() string {
- return fmt.Sprintf("Requested range %d is not satisfiable", err.FromByte)
-}
-
// ContentStore provides a simple file system based storage.
type ContentStore struct {
storage.ObjectStorage