diff --git a/convert/utils.go b/convert/utils.go index 5e8f2887d..ce8982404 100644 --- a/convert/utils.go +++ b/convert/utils.go @@ -42,7 +42,7 @@ func isEmpty(v interface{}) bool { rv := reflect.ValueOf(v) - switch rv.Kind() { //nolint:exhaustive + switch rv.Kind() { case reflect.Slice, reflect.Array, reflect.Map: return rv.Len() == 0 }