From 2a1adb048ec0bc3b527c9cbf3c15549d35929638 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Mon, 29 Sep 2025 10:48:40 +0200 Subject: [PATCH] Remove left-over ch = ch. --- src/worker.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/worker.rs b/src/worker.rs index 2898110..eb16173 100644 --- a/src/worker.rs +++ b/src/worker.rs @@ -60,7 +60,6 @@ pub fn work(in_path:Option<&str>, out_path:Option<&str>) -> io::Result<()> { last_ch = ' '; }, _ => { - let ch = ch; if ch != ' ' || last_ch != ' ' { out_writer.write(format!("{}", ch).as_bytes())?; last_ch = ch;