Remove non-documentation lint
Because of extensive nature of changes, tested all three non-memstore backends - passed.
This commit is contained in:
parent
6614466d23
commit
484bf145a8
35 changed files with 277 additions and 284 deletions
|
|
@ -258,7 +258,7 @@ func (t Type) String() string {
|
|||
type StatsContainer struct {
|
||||
IteratorStats
|
||||
Kind string
|
||||
Uid uint64
|
||||
UID uint64
|
||||
SubIts []StatsContainer
|
||||
}
|
||||
|
||||
|
|
@ -266,7 +266,7 @@ func DumpStats(it Iterator) StatsContainer {
|
|||
var out StatsContainer
|
||||
out.IteratorStats = it.Stats()
|
||||
out.Kind = it.Type().String()
|
||||
out.Uid = it.UID()
|
||||
out.UID = it.UID()
|
||||
for _, sub := range it.SubIterators() {
|
||||
out.SubIts = append(out.SubIts, DumpStats(sub))
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue