From 4a351e22bed2d9de4fc0d677872eb5a8c338c439 Mon Sep 17 00:00:00 2001 From: rmsyn <117854522+rmsyn@users.noreply.github.com> Date: Wed, 29 Nov 2023 05:34:36 +0000 Subject: [PATCH] fixup: zellij-server: fix compiler warnings (#2873) * fixup: zellij-server: fix compiler warnings Fixes compiler warnings about variables not being read before being reassigned a value, and an unused variable. Removes unnecessary intermediate local variables. * style(fmt): rustfmt --------- Co-authored-by: Jae-Heon Ji --- zellij-server/src/os_input_output.rs | 46 +++++++++++++--------------- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/zellij-server/src/os_input_output.rs b/zellij-server/src/os_input_output.rs index 8a2a4cdc..25e2cafe 100644 --- a/zellij-server/src/os_input_output.rs +++ b/zellij-server/src/os_input_output.rs @@ -580,18 +580,17 @@ impl ServerOsApi for ServerOsInputOutput { .lock() .to_anyhow() .with_context(err_context)?; - let mut terminal_id = None; - { - let current_ids: BTreeSet = self - .terminal_id_to_raw_fd - .lock() - .to_anyhow() - .with_context(err_context)? - .keys() - .copied() - .collect(); - terminal_id = current_ids.last().map(|l| l + 1).or(Some(0)); - } + let terminal_id = self + .terminal_id_to_raw_fd + .lock() + .to_anyhow() + .with_context(err_context)? + .keys() + .copied() + .collect::>() + .last() + .map(|l| l + 1) + .or(Some(0)); match terminal_id { Some(terminal_id) => { self.terminal_id_to_raw_fd @@ -622,18 +621,17 @@ impl ServerOsApi for ServerOsInputOutput { fn reserve_terminal_id(&self) -> Result { let err_context = || "failed to reserve a terminal ID".to_string(); - let mut terminal_id = None; - { - let current_ids: BTreeSet = self - .terminal_id_to_raw_fd - .lock() - .to_anyhow() - .with_context(err_context)? - .keys() - .copied() - .collect(); - terminal_id = current_ids.last().map(|l| l + 1).or(Some(0)); - } + let terminal_id = self + .terminal_id_to_raw_fd + .lock() + .to_anyhow() + .with_context(err_context)? + .keys() + .copied() + .collect::>() + .last() + .map(|l| l + 1) + .or(Some(0)); match terminal_id { Some(terminal_id) => { self.terminal_id_to_raw_fd