diff --git a/pkg/envoy/csv/decoder.go b/pkg/envoy/csv/decoder.go index 3ef9051ed..b2277f1ce 100644 --- a/pkg/envoy/csv/decoder.go +++ b/pkg/envoy/csv/decoder.go @@ -43,10 +43,6 @@ func (y *decoder) CanDecodeMime(m string) bool { return m == "text/csv" } -func (y *decoder) CanDecodeMime(m string) bool { - return m == "text/csv" -} - func (y *decoder) CanDecodeExt(ext string) bool { pt := strings.Split(ext, ".") return strings.TrimSpace(pt[len(pt)-1]) == "csv"