Remove looping when saving an association slice, to not repeat the updates

This commit is contained in:
Jason Seriff 2016-08-05 15:49:41 -05:00
parent a646b13548
commit 2ff17d65e4

View File

@ -353,9 +353,7 @@ func (association *Association) saveAssociations(values ...interface{}) *Associa
if indirectReflectValue.Kind() == reflect.Struct { if indirectReflectValue.Kind() == reflect.Struct {
saveAssociation(reflectValue) saveAssociation(reflectValue)
} else if indirectReflectValue.Kind() == reflect.Slice { } else if indirectReflectValue.Kind() == reflect.Slice {
for i := 0; i < indirectReflectValue.Len(); i++ { saveAssociation(indirectReflectValue)
saveAssociation(indirectReflectValue.Index(i))
}
} else { } else {
association.setErr(errors.New("invalid value type")) association.setErr(errors.New("invalid value type"))
} }