Commit eaecf357 authored by Rob Pike's avatar Rob Pike

time: delete unused buffer.WriteByte method

R=golang-dev, bradfitz, r, rsc
CC=golang-dev
https://golang.org/cl/5539056
parent a4f7024e
......@@ -335,10 +335,6 @@ func (b *buffer) WriteString(s string) {
*b = append(*b, s...)
}
func (b *buffer) WriteByte(c byte) {
*b = append(*b, c)
}
func (b *buffer) String() string {
return string([]byte(*b))
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment