1
0
mirror of https://github.com/golang/go synced 2024-11-24 23:07:56 -07:00

tabwriter: delete unnecessary type declaration

R=rsc, r2
CC=golang-dev
https://golang.org/cl/2733041
This commit is contained in:
Robert Griesemer 2010-10-25 17:45:26 -07:00
parent c77f090085
commit 19b8fc788c

View File

@ -99,16 +99,13 @@ func check(t *testing.T, testname string, minwidth, tabwidth, padding int, padch
}
type entry struct {
var tests = []struct {
testname string
minwidth, tabwidth, padding int
padchar byte
flags uint
src, expected string
}
var tests = []entry{
}{
{
"1a",
8, 0, 1, '.', 0,