From a3622ba294e2554e32ef0deac0d0a74f627b582f Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Wed, 19 Oct 2022 23:43:45 -0600 Subject: [PATCH] Remove TODO comment In favor of tracking scoped threads in #1141 --- src/walk.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/walk.rs b/src/walk.rs index 1577fa0..0148a8b 100644 --- a/src/walk.rs +++ b/src/walk.rs @@ -367,9 +367,6 @@ fn spawn_receiver( handles.push(handle); } - // TODO: once our MSRV supports scoped threads, it would probablly make sense to - // use that here - // Wait for all threads to exit before exiting the program. let exit_codes = handles .into_iter() .map(|handle| handle.join().unwrap())