removed unnecessary if

This commit is contained in:
ascendforever 2023-10-24 19:04:22 -04:00
parent 249edf748b
commit 71c8f1c3d5

View file

@ -92,9 +92,6 @@ fn process_args() -> (Vec<Vec<PathBuf>>, Config) {
let run_paths: Vec<Vec<PathBuf>> = run_targets.iter().enumerate().map(
|(i,spaths)| {
if spaths.len() == 0 {
return
}
spaths.iter().map(
|spath| Path::new(spath).canonicalize().unwrap_or_else(
|_| {