Remove TODO comment

In favor of tracking scoped threads in #1141
This commit is contained in:
Thayne McCombs 2022-10-19 23:43:45 -06:00
parent aec125637b
commit a3622ba294
1 changed files with 0 additions and 3 deletions

View File

@ -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())