(runtimeID string)
| 293 | } |
| 294 | |
| 295 | func (m *storeMap) getMap(runtimeID string) (storeMap *logStatStoreMap, ok bool) { |
| 296 | v, ok := m.Load(runtimeID) |
| 297 | if ok { |
| 298 | storeMap, ok = v.(*logStatStoreMap) |
| 299 | return |
| 300 | } |
| 301 | return |
| 302 | } |
| 303 | |
| 304 | func (m *storeMap) delMap(runtimeID string) { |
| 305 | m.Delete(runtimeID) |
no test coverage detected