From 4dc8475f7c348972ac97a275444bb6114ba016b0 Mon Sep 17 00:00:00 2001 From: Marcin Kaciuba Date: Wed, 19 Oct 2022 23:47:41 +0200 Subject: [PATCH] ixi --- pkg/object/file_object.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/object/file_object.go b/pkg/object/file_object.go index a8a50aa..7425724 100644 --- a/pkg/object/file_object.go +++ b/pkg/object/file_object.go @@ -189,7 +189,6 @@ func parseRange(s string) (httpRange, error) { minStart = math.MaxUint64 maxEnd := uint64(0) rangesArr := strings.Split(s[6:], ",") - fmt.Println("RRR", rangesArr) for _, ra := range rangesArr { ra = strings.TrimSpace(ra) if ra == "" { @@ -204,7 +203,6 @@ func parseRange(s string) (httpRange, error) { // If no start is specified, end specifies the // range start relative to the end of the file. i, err := strconv.ParseUint(start, 10, 64) - fmt.Println("sssstart", i) if err != nil { return httpRangeData, errors.New("invalid range") }