()
| 49 | } |
| 50 | |
| 51 | func (s *levelsController) getSummary() *summary { |
| 52 | out := &summary{ |
| 53 | fileIDs: make(map[uint64]bool), |
| 54 | } |
| 55 | for _, l := range s.levels { |
| 56 | l.getSummary(out) |
| 57 | } |
| 58 | return out |
| 59 | } |
| 60 | |
| 61 | func (s *levelHandler) getSummary(sum *summary) { |
| 62 | s.RLock() |
nothing calls this directly
no test coverage detected