()
| 16 | |
| 17 | impl Map { |
| 18 | pub fn new() -> Self { |
| 19 | Self::default() |
| 20 | } |
| 21 | |
| 22 | pub fn insert(&mut self, repo_id: RepoId, repo_obj: RepoObject) { |
| 23 | self.0.insert(repo_id, repo_obj); |
nothing calls this directly
no outgoing calls
no test coverage detected