Codebase list golang-github-vbauerster-mpb / fea1305
test fix Vladimir Bauer 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
210210 func toSyncMatrix(ss []step) map[int][]chan int {
211211 var column []chan int
212212 for _, s := range ss {
213 if ok, ch := s.decorator.SyncWidth(); ok {
213 if ok, ch := s.decorator.Syncable(); ok {
214214 column = append(column, ch)
215215 }
216216 }