Codebase list golang-github-vbauerster-mpb / 8ac91f4
return early if s.aborted Vladimir Bauer 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
298298 func (b *Bar) Abort(drop bool) {
299299 select {
300300 case b.operateState <- func(s *bState) {
301 if s.completed {
301 if s.completed || s.aborted {
302302 return
303303 }
304304 s.aborted = true