From 5f8524509019daa43ccc901769d54a0914140ba9 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Wed, 20 Aug 2025 23:35:26 +0200 Subject: [PATCH] Cleanup: Kommentiert ungenutzte `save_config`-Funktion in `config.rs` aus. --- src/config.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config.rs b/src/config.rs index 982a694..ff391a5 100644 --- a/src/config.rs +++ b/src/config.rs @@ -131,7 +131,7 @@ fn load_config() -> AppConfig { confy::load(&*program::program_name(), CONFIG_NAME).unwrap_or_default() } -/// Speichert die übergebene Konfiguration in der Konfigurationsdatei. -fn save_config(config: AppConfig) { - confy::store(&*program::program_name(), CONFIG_NAME, config).unwrap(); -} \ No newline at end of file +// /// Speichert die übergebene Konfiguration in der Konfigurationsdatei. +// fn save_config(config: AppConfig) { +// confy::store(&*program::program_name(), CONFIG_NAME, config).unwrap(); +// } \ No newline at end of file