From a0fcd3f3e745ed8bd01a09a50d756b48c480334f Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 26 Aug 2025 17:18:56 -0300 Subject: [PATCH] fix: remove redundant update and default_options methods Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/meta_plugin/system.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/meta_plugin/system.rs b/src/meta_plugin/system.rs index df60e14..69e7ca4 100644 --- a/src/meta_plugin/system.rs +++ b/src/meta_plugin/system.rs @@ -64,13 +64,6 @@ impl MetaPlugin for CwdMetaPlugin { } } - fn update(&mut self, _data: &[u8]) -> MetaPluginResponse { - MetaPluginResponse { - metadata: Vec::new(), - is_finalized: false, - } - } - fn meta_name(&self) -> String { self.meta_name.clone() } @@ -109,10 +102,6 @@ impl MetaPlugin for CwdMetaPlugin { vec!["cwd".to_string()] } - fn default_options(&self) -> std::collections::HashMap { - std::collections::HashMap::new() - } - fn options(&self) -> &std::collections::HashMap { &self.options }