mirror of
https://github.com/golang/go
synced 2024-11-05 11:36:10 -07:00
8524ce5143
import ( "fmt" "strings" ) When deleting "fmt" import statement, code should be converted to the following code. import ( "strings" ) Instead of import "strings" Diff becomes nicer by this change and it avoids that rewriting grouped imports non-grouped may result in confusion comments. Example: // comment 1 import ( "fmt" // comment 2 "strings" ) should be // comment 1 import ( // comment 2 "strings" ) instead of // comment 1 // comment 2 import "strings" Fixes golang/go#18051 Change-Id: I3c07b70b657191eacf83c3197a965e587286c950 Reviewed-on: https://go-review.googlesource.com/36853 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Robert Griesemer <gri@golang.org> |
||
---|---|---|
.. | ||
fastwalk_dirent_fileno.go | ||
fastwalk_dirent_ino.go | ||
fastwalk_portable.go | ||
fastwalk_test.go | ||
fastwalk_unix.go | ||
fastwalk.go | ||
fix_test.go | ||
fix.go | ||
imports.go | ||
mkindex.go | ||
mkstdlib.go | ||
sortimports.go | ||
zstdlib.go |