]> Cypherpunks repositories - gostls13.git/commitdiff
mime/multipart: fix format
authorRui Ueyama <ruiu@google.com>
Thu, 12 Jun 2014 00:39:34 +0000 (17:39 -0700)
committerIan Lance Taylor <iant@golang.org>
Thu, 12 Jun 2014 00:39:34 +0000 (17:39 -0700)
Remove unnecessary blank line.

LGTM=iant
R=golang-codereviews, iant
CC=golang-codereviews
https://golang.org/cl/105040045

src/pkg/mime/multipart/multipart.go

index 7382efab96723a66a87dadaf73e9a199fa4461c2..01a667d930db371efe3576742a1fa6098d72e0d3 100644 (file)
@@ -90,8 +90,7 @@ func (p *Part) parseContentDisposition() {
 func NewReader(r io.Reader, boundary string) *Reader {
        b := []byte("\r\n--" + boundary + "--")
        return &Reader{
-               bufReader: bufio.NewReader(r),
-
+               bufReader:        bufio.NewReader(r),
                nl:               b[:2],
                nlDashBoundary:   b[:len(b)-2],
                dashBoundaryDash: b[2:],