mirror of https://github.com/etcd-io/bbolt.git
*: fix gofmt style issues in 'range'
parent
c359265bcd
commit
7ce671beee
|
@ -1587,7 +1587,7 @@ func mustContainKeys(b *bolt.Bucket, m map[string]string) {
|
|||
|
||||
// Check for keys found in bucket that shouldn't be there.
|
||||
var keys []string
|
||||
for k, _ := range found {
|
||||
for k := range found {
|
||||
if _, ok := m[string(k)]; !ok {
|
||||
keys = append(keys, k)
|
||||
}
|
||||
|
@ -1598,7 +1598,7 @@ func mustContainKeys(b *bolt.Bucket, m map[string]string) {
|
|||
}
|
||||
|
||||
// Check for keys not found in bucket that should be there.
|
||||
for k, _ := range m {
|
||||
for k := range m {
|
||||
if _, ok := found[string(k)]; !ok {
|
||||
keys = append(keys, k)
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@ import (
|
|||
"unsafe"
|
||||
)
|
||||
|
||||
|
||||
// txPending holds a list of pgids and corresponding allocation txns
|
||||
// that are pending to be freed.
|
||||
type txPending struct {
|
||||
|
|
Loading…
Reference in New Issue