From 4604048010347ea946ae57628d694a631787ab17 Mon Sep 17 00:00:00 2001
From: Philip Peterson <philip-peterson@users.noreply.github.com>
Date: Wed, 27 Jul 2022 23:04:36 -0400
Subject: [PATCH] Removed some vestigial code related to Range bounds checks
 (#20312)

---
 modules/lfs/content_store.go | 16 ----------------
 1 file changed, 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