Commit 8e50e48f authored by Tobias Klauser's avatar Tobias Klauser Committed by Tobias Klauser

cmd/cgo: remove duplicate entry from gofmtLineReplacer

CL 158457 added a duplicate entry for the ",\n" -> "," replacement to
gofmtLineReplacer. Remove the duplicate.

Change-Id: I17684fcd19cbc96fa7a7b53bf7c1a6382bf1114f
Reviewed-on: https://go-review.googlesource.com/c/158619
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent e308807f
......@@ -151,7 +151,6 @@ var gofmtLineReplacer = strings.NewReplacer(
"<\n", "<",
">\n", ">",
"=\n", "=",
",\n", ",",
"\n", ";",
)
......
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