From 90886091eefd3f1b299ecfae5976c76acc08ac04 Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Wed, 12 Nov 2025 12:06:37 +0100 Subject: [PATCH] Fix clippy --- common/client-core/src/init/websockets.rs | 1 - common/client-libs/gateway-client/src/client/websockets.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/common/client-core/src/init/websockets.rs b/common/client-core/src/init/websockets.rs index 6d09a325b0..ba407623a6 100644 --- a/common/client-core/src/init/websockets.rs +++ b/common/client-core/src/init/websockets.rs @@ -30,7 +30,6 @@ pub(crate) async fn connect_async( resolver .resolve_str(domain) .await? - .into_iter() .map(|a| SocketAddr::new(a, port)) .collect() } diff --git a/common/client-libs/gateway-client/src/client/websockets.rs b/common/client-libs/gateway-client/src/client/websockets.rs index 9b04c9e028..2336549d5e 100644 --- a/common/client-libs/gateway-client/src/client/websockets.rs +++ b/common/client-libs/gateway-client/src/client/websockets.rs @@ -39,7 +39,6 @@ pub(crate) async fn connect_async( resolver .resolve_str(domain) .await? - .into_iter() .map(|a| SocketAddr::new(a, port)) .collect() }