src, misc: applied gofmt -s -w

Pending CL 113120043.

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/112290043
This commit is contained in:
Robert Griesemer 2014-07-16 16:29:51 -07:00
parent 8d504c4e97
commit 8a23c0021e
16 changed files with 27 additions and 27 deletions

View file

@ -580,7 +580,7 @@ func (db *DB) maybeOpenNewConnections() {
// Runs in a separate goroutine, opens new connections when requested.
func (db *DB) connectionOpener() {
for _ = range db.openerCh {
for range db.openerCh {
db.openNewConnection()
}
}