From e9d0768e3c081d9c328f9c1811f783007e8bb489 Mon Sep 17 00:00:00 2001 From: rimuy <46044567+rimuy@users.noreply.github.com> Date: Fri, 26 Jul 2024 22:11:28 -0300 Subject: [PATCH] Suppress unused parameter warning on `remote/ssh_session.rs` (#15315) This was probably an oversight from https://github.com/zed-industries/zed/pull/15129. ![image](https://github.com/user-attachments/assets/5867e307-f581-4b40-8492-2fb80e87c18c) Release Notes: - N/A --- crates/remote/src/ssh_session.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/remote/src/ssh_session.rs b/crates/remote/src/ssh_session.rs index 8fa90eb437f98df11cbc3b2e4820fa69b95627c3..87fa662bb6d6dee3b383a0918f1a5c0fe121f92f 100644 --- a/crates/remote/src/ssh_session.rs +++ b/crates/remote/src/ssh_session.rs @@ -466,7 +466,7 @@ impl ProtoClient for SshSession { impl SshClientState { #[cfg(not(unix))] async fn new( - connection_options: SshConnectionOptions, + _connection_options: SshConnectionOptions, _delegate: Arc, _cx: &mut AsyncAppContext, ) -> Result {