Commit d8bc797e authored by Robert Griesemer's avatar Robert Griesemer

apply gofmt to json files

R=rsc
https://golang.org/cl/164071
parent 114f73f8
......@@ -51,9 +51,7 @@ func (j *decoder) Int64(i int64) { j.value = float64(i) }
func (j *decoder) Uint64(i uint64) { j.value = float64(i) }
func (j *decoder) Float64(f float64) {
j.value = float64(f)
}
func (j *decoder) Float64(f float64) { j.value = float64(f) }
func (j *decoder) String(s string) { j.value = s }
......
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