From 8afcf45878c9f8600980c80b03cf9b091e91af56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Fri, 24 Mar 2023 07:09:09 +0800 Subject: [PATCH] Remove unused --- common/format/fmt.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/common/format/fmt.go b/common/format/fmt.go index 3e4d278..62747a9 100644 --- a/common/format/fmt.go +++ b/common/format/fmt.go @@ -64,11 +64,7 @@ func ToString0[T any](message T) string { } func MapToString[T any](arr []T) []string { - // TODO: replace if golangci-lint fixed - // return common.Map(arr, ToString0[T]) - return common.Map(arr, func(it T) string { - return ToString(it) - }) + return common.Map(arr, ToString0[T]) } func Seconds(seconds float64) string {