continue;
}
if path.is_dir() {
- result.append(&mut find_files_recursively(root_path, &path))
+ result.append(&mut find_files_recursively(root_path, &path));
} else {
let file_type = file_handler.identify(&path);
result.push(File { path, file_type });