concourse / concourse

Replace for loop with call to copy for slice SCC-S1001
Anti-pattern
Major
5 months ago5 months old
should use copy(to, from) instead of a loop
315}
316
317func (r *groupResolver) doomCandidates() {
318	for i, c := range r.candidates {319		r.doomedCandidates[i] = c
320	}
321}