()
| 129 | } |
| 130 | |
| 131 | func (m *ClientManager) initInternals() { |
| 132 | m.once.Do(func() { |
| 133 | m.cache = map[[sha1.Size]byte]*list.Element{} |
| 134 | m.ll = list.New() |
| 135 | }) |
| 136 | } |
| 137 | |
| 138 | func (m *ClientManager) removeOldest() { |
| 139 | m.mu.Lock() |
no outgoing calls
no test coverage detected