refactor: remove default_options method from MetaPlugin trait

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-27 10:44:44 -03:00
parent 80f8cf7eb7
commit d5566e66c5

View File

@@ -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<String, serde_yaml::Value> {
// Default implementation returns empty - plugins should override this
std::collections::HashMap::new()
}
// Method to downcast to concrete type (for checking finalization state)