remove Array type case from internal/empty.IsNil checks

This commit is contained in:
John
2019-11-21 21:57:50 +08:00
parent 382356bc8d
commit 056c6d4688

View File

@ -82,7 +82,6 @@ func IsNil(value interface{}) bool {
case reflect.Chan,
reflect.Map,
reflect.Slice,
reflect.Array,
reflect.Func,
reflect.Ptr,
reflect.Interface,