Codebase list golang-github-vbauerster-mpb / 1967418
use removeLastRune func Vladimir Bauer 9 years ago
1 changed file(s) with 1 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
167167 close(cancel)
168168 p.Stop()
169169
170 bytes := buf.Bytes()
171 _, size := utf8.DecodeLastRune(bytes)
172 bytes = bytes[:len(bytes)-size] // removing new line
170 bytes := removeLastRune(buf.Bytes())
173171
174172 seen := make(map[rune]bool)
175173 for _, r := range string(bytes) {