comparison rust/hg-core/src/dirstate/status.rs @ 44747:d8b703b8bf70 stable

rust: remove extra empty line This is a gratuitous cleanup. Differential Revision: https://phab.mercurial-scm.org/D8460
author Raphaël Gomès <rgomes@octobus.net>
date Mon, 20 Apr 2020 11:03:31 +0200
parents e62052d0f377
children a467416c493c
comparison
equal deleted inserted replaced
44746:c36a3fcfc36b 44747:d8b703b8bf70
305 } 305 }
306 306
307 /// Dispatch a single entry (file, folder, symlink...) found during `traverse`. 307 /// Dispatch a single entry (file, folder, symlink...) found during `traverse`.
308 /// If the entry is a folder that needs to be traversed, it will be handled 308 /// If the entry is a folder that needs to be traversed, it will be handled
309 /// in a separate thread. 309 /// in a separate thread.
310
311 fn handle_traversed_entry<'a>( 310 fn handle_traversed_entry<'a>(
312 scope: &rayon::Scope<'a>, 311 scope: &rayon::Scope<'a>,
313 files_sender: &'a crossbeam::Sender<IoResult<(HgPathBuf, Dispatch)>>, 312 files_sender: &'a crossbeam::Sender<IoResult<(HgPathBuf, Dispatch)>>,
314 matcher: &'a (impl Matcher + Sync), 313 matcher: &'a (impl Matcher + Sync),
315 root_dir: impl AsRef<Path> + Sync + Send + Copy + 'a, 314 root_dir: impl AsRef<Path> + Sync + Send + Copy + 'a,