From 1fcb7e181c65c082ebcc0a4fc9a89ad8553b44e7 Mon Sep 17 00:00:00 2001 From: Serge Barral Date: Sun, 16 Jul 2023 16:40:41 +0200 Subject: [PATCH] Satisfy newest clippy --- asynchronix/src/executor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/asynchronix/src/executor.rs b/asynchronix/src/executor.rs index 613b27b..5eb0ec5 100644 --- a/asynchronix/src/executor.rs +++ b/asynchronix/src/executor.rs @@ -140,7 +140,6 @@ impl Executor { let worker_handles: Vec<_> = local_queues_and_parkers .into_iter() .enumerate() - .into_iter() .map(|(id, (local_queue, worker_parker))| { let thread_builder = thread::Builder::new().name(format!("Worker #{}", id));