Remove some unnecessary unwraps by using the Result::ok

combinatoric
This commit is contained in:
DJMcNab 2018-12-29 22:33:28 +00:00
parent c881fc607e
commit 07202f944c

View file

@ -59,12 +59,8 @@ impl RootFilter {
if !(self.file_filter)(path) { if !(self.file_filter)(path) {
return None; return None;
} }
if !(path.starts_with(&self.root)) { let path = path.strip_prefix(&self.root).ok()?;
return None; RelativePathBuf::from_path(path).ok()
}
let path = path.strip_prefix(&self.root).unwrap();
let path = RelativePathBuf::from_path(path).unwrap();
Some(path)
} }
} }