Codebase list golang-github-vbauerster-mpb / 51a9558
check for nil BarFillerBuilder Vladimir Bauer 1 year, 10 months ago
1 changed file(s) with 3 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
125125
126126 // New creates a bar by calling `Build` method on provided `BarFillerBuilder`.
127127 func (p *Progress) New(total int64, builder BarFillerBuilder, options ...BarOption) *Bar {
128 if builder == nil {
129 return p.MustAdd(total, nil, options...)
130 }
128131 return p.MustAdd(total, builder.Build(), options...)
129132 }
130133