From: Didier Spezia Date: Sun, 23 Aug 2015 12:41:07 +0000 (+0000) Subject: cmd/pprof/internal: map/slice literals janitoring X-Git-Tag: go1.6beta1~184 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e0c05fcb5b92dee3ab130e41c574b31625514dfe;p=gostls13.git cmd/pprof/internal: map/slice literals janitoring Simplify slice/map literal expression. Caught with gofmt -d -s, fixed with gofmt -w -s Change-Id: I19723900d0649019bf79b9330d68525a68ed69c4 Reviewed-on: https://go-review.googlesource.com/13835 Reviewed-by: Russ Cox --- diff --git a/src/cmd/pprof/internal/profile/legacy_profile.go b/src/cmd/pprof/internal/profile/legacy_profile.go index e4c92cdd19..c7c047a64b 100644 --- a/src/cmd/pprof/internal/profile/legacy_profile.go +++ b/src/cmd/pprof/internal/profile/legacy_profile.go @@ -589,7 +589,7 @@ func parseHeap(b []byte) (p *Profile, err error) { p.Sample = append(p.Sample, &Sample{ Value: value, Location: sloc, - NumLabel: map[string][]int64{"bytes": []int64{blocksize}}, + NumLabel: map[string][]int64{"bytes": {blocksize}}, }) }