From 32106ac0f40bfd559f4e7be7fb4b8cce7c882352 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Tue, 15 Jul 2025 16:54:45 -0700 Subject: [PATCH] daemon: rm vestigial dummy_analyzer remnants --- daemon/src/config.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/daemon/src/config.rs b/daemon/src/config.rs index 8d1c4f5..8818e7c 100644 --- a/daemon/src/config.rs +++ b/daemon/src/config.rs @@ -14,9 +14,6 @@ pub struct Config { pub colorblind_mode: bool, pub key_input_mode: u8, pub analyzers: AnalyzerConfig, - - // deprecated - pub enable_dummy_analyzer: bool, } impl Default for Config { @@ -29,9 +26,6 @@ impl Default for Config { colorblind_mode: false, key_input_mode: 0, analyzers: AnalyzerConfig::default(), - - // deprecated - enable_dummy_analyzer: false, } } }