Fix verify-gofmt

This commit is contained in:
Ciprian Hacman 2020-08-05 18:25:04 +03:00
parent 68595416af
commit 5e93722ba5
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ func (this *KVState) String() string {
return "nil"
}
keysForRecords := make([]string, 0, len(this.Records))
for k, _ := range this.Records {
for k := range this.Records {
keysForRecords = append(keysForRecords, k)
}
github_com_gogo_protobuf_sortkeys.Strings(keysForRecords)