From f00b7751723e7ec6f3ce6e2b20ff5de72d03572b Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Mon, 27 Oct 2025 12:45:20 +0100 Subject: [PATCH] config_paths: remove unused clone() --- src/env/config_paths.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env/config_paths.rs b/src/env/config_paths.rs index df56532bf..5db50d03a 100644 --- a/src/env/config_paths.rs +++ b/src/env/config_paths.rs @@ -126,7 +126,7 @@ pub fn new() -> Self { "paths.bin: %s", paths .bin - .clone() + .as_ref() .map(|x| x.display().to_string()) .unwrap_or("|not found|".to_string()), );