diff --git a/tools/list/list.go b/tools/list/list.go index 63909a29..9b0e40b5 100644 --- a/tools/list/list.go +++ b/tools/list/list.go @@ -27,9 +27,6 @@ func SubtractSlice[T comparable](base []T, subtract []T) []T { // ExistInSlice checks whether a comparable element exists in a slice of the same type. func ExistInSlice[T comparable](item T, list []T) bool { - if len(list) == 0 { - return false - } for _, v := range list { if v == item {