1
0
mirror of https://github.com/golang/go synced 2024-09-30 20:18:33 -06:00

imports: remove unnecessary string conversion

This change remove an unnecessary string conversion of
a variable that is already a string.

Change-Id: I64d9a6c059276fa22f1be9f2dba02bbeb63cb8fb
Reviewed-on: https://go-review.googlesource.com/35560
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Ludi Rehak 2017-01-22 07:50:54 -08:00 committed by Brad Fitzpatrick
parent fcfba28e23
commit 721f218496

View File

@ -276,7 +276,7 @@ func addImportSpaces(r io.Reader, breaks []string) []byte {
}
if inImports && len(breaks) > 0 {
if m := impLine.FindStringSubmatch(s); m != nil {
if m[1] == string(breaks[0]) {
if m[1] == breaks[0] {
out.WriteByte('\n')
breaks = breaks[1:]
}