From d5566e66c5c7cb8f6270273d43b1c1623832c0f4 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 10:44:44 -0300 Subject: [PATCH] refactor: remove default_options method from MetaPlugin trait Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/meta_plugin/mod.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/meta_plugin/mod.rs b/src/meta_plugin/mod.rs index d049131..d6e81c0 100644 --- a/src/meta_plugin/mod.rs +++ b/src/meta_plugin/mod.rs @@ -247,11 +247,6 @@ pub trait MetaPlugin where Self: 'static { Vec::new() } - // Get the default options for this plugin - fn default_options(&self) -> std::collections::HashMap { - // Default implementation returns empty - plugins should override this - std::collections::HashMap::new() - } // Method to downcast to concrete type (for checking finalization state)