()
| 306 | |
| 307 | impl Tree { |
| 308 | pub fn new() -> Self { |
| 309 | Self { |
| 310 | ..Default::default() |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | pub fn add_blob(&mut self, path: &mut VecDeque<String>, oid: &Option<git2::Oid>) { |
| 315 | if let Some(name) = path.pop_front() { |
nothing calls this directly
no outgoing calls
no test coverage detected