| 33 | } |
| 34 | |
| 35 | Adapter * DebugAdapterMap::FindAdapter(uint8_t columns) |
| 36 | { |
| 37 | auto it = adapters_.find(columns); |
| 38 | if (it == adapters_.end()) return nullptr; |
| 39 | return it->second; |
| 40 | } |
| 41 | |
| 42 | void DebugAdapterMap::TryAddAdapter(Adapter * adapter) |
| 43 | { |
no outgoing calls
no test coverage detected