summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandy.boot <bootandy@gmail.com>2023-01-17 23:51:54 +0000
committerandy.boot <bootandy@gmail.com>2023-01-21 16:40:21 +0000
commitb903f58cead085eb12e55a7e7663de2d92e67ad5 (patch)
tree69dce3b2b7593ce5d5136bce5b453c6b96a10640
parent0f72ca328ab7243aa16fddeb2f91436f1133c8d9 (diff)
Comment: update comment
-rw-r--r--src/dir_walker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dir_walker.rs b/src/dir_walker.rs
index 9105ce3..717d432 100644
--- a/src/dir_walker.rs
+++ b/src/dir_walker.rs
@@ -138,7 +138,7 @@ fn walk(dir: PathBuf, walk_data: &WalkData, depth: usize) -> Option<Node> {
// rayon doesn't parallelize as well giving a 3X performance drop
// hence we unravel the recursion a bit
- // return walk(entry.path(), permissions_flag, ignore_directories, allowed_filesystems, use_apparent_size, by_filecount, ignore_hidden);
+ // return walk(entry.path(), walk_data, depth)
if !ignore_file(entry, walk_data) {
if let Ok(data) = entry.file_type() {