From 48db2c01b42d959f2d8fa0c24d853bdb6100cf8a Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 26 Mar 2018 06:56:39 +0000 Subject: all: use strings.Builder instead of bytes.Buffer where appropriate I grepped for "bytes.Buffer" and "buf.String" and mostly ignored test files. I skipped a few on purpose and probably missed a few others, but otherwise I think this should be most of them. Updates #18990 Change-Id: I5a6ae4296b87b416d8da02d7bfaf981d8cc14774 Reviewed-on: https://go-review.googlesource.com/102479 Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/testing/example.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/testing/example.go') diff --git a/src/testing/example.go b/src/testing/example.go index b9955500e6..f4beb76f5f 100644 --- a/src/testing/example.go +++ b/src/testing/example.go @@ -5,7 +5,6 @@ package testing import ( - "bytes" "fmt" "io" "os" @@ -72,7 +71,7 @@ func runExample(eg InternalExample) (ok bool) { os.Stdout = w outC := make(chan string) go func() { - var buf bytes.Buffer + var buf strings.Builder _, err := io.Copy(&buf, r) r.Close() if err != nil { -- cgit v1.3