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) } ...@@ -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) Uint64(i uint64) { j.value = float64(i) }
func (j *decoder) Float64(f float64) { func (j *decoder) Float64(f float64) { j.value = float64(f) }
j.value = float64(f)
}
func (j *decoder) String(s string) { j.value = s } func (j *decoder) String(s string) { j.value = s }
......
...@@ -104,8 +104,8 @@ func assertResult(t *testing.T, results, expected interface{}) { ...@@ -104,8 +104,8 @@ func assertResult(t *testing.T, results, expected interface{}) {
} }
type decodeTest struct { type decodeTest struct {
s string; s string;
r interface{}; r interface{};
} }
var tests = []decodeTest{ var tests = []decodeTest{
......
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