FileSet: no error for remove_path
Dependencies
Change contents
- edit in rust/src/repo.rs at line 306
RemoveNotImplemented(String), - edit in rust/src/repo.rs at line 316
FileSetError::RemoveNotImplemented(p) => {write!(f, "not implemented: remove_path({})", p)} - replacement in rust/src/repo.rs at line 348
fn remove_path(&self, path: &str, _rec: bool) -> Result<(), Self::Error> {Err(FileSetError::RemoveNotImplemented(path.to_string()))fn remove_path(&self, _path: &str, _rec: bool) -> Result<(), Self::Error> {Ok(())