Codebase list golang-github-vbauerster-mpb / f996f96
remove deprecated Vladimir Bauer 3 years ago
1 changed file(s) with 0 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
3838 func (f BarFillerBuilderFunc) Build() BarFiller {
3939 return f()
4040 }
41
42 // NewBarFiller constructs a BarFiller from provided BarFillerBuilder.
43 // Deprecated. Prefer using `*Progress.New(...)` directly.
44 func NewBarFiller(b BarFillerBuilder) BarFiller {
45 return b.Build()
46 }