From e024aebb6691ad6b5db76b878be2002d1770ecad Mon Sep 17 00:00:00 2001 From: Kevin Wan Date: Wed, 11 Aug 2021 11:38:55 +0800 Subject: [PATCH] fix golint issues (#899) --- core/mapping/unmarshaler.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/mapping/unmarshaler.go b/core/mapping/unmarshaler.go index b1ea2dbb..35a61de1 100644 --- a/core/mapping/unmarshaler.go +++ b/core/mapping/unmarshaler.go @@ -518,14 +518,14 @@ func (u *Unmarshaler) fillSliceValue(slice reflect.Value, index int, baseKind re target.Set(reflect.ValueOf(value)) ithVal.Set(target.Addr()) return nil - } else { - if ithVal.Kind() != reflect.TypeOf(value).Kind() { - return errTypeMismatch - } - - ithVal.Set(reflect.ValueOf(value)) - return nil } + + if ithVal.Kind() != reflect.TypeOf(value).Kind() { + return errTypeMismatch + } + + ithVal.Set(reflect.ValueOf(value)) + return nil } }