From 80f8cf7eb7da7abe14fb156e7d3279842de42b78 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 27 Aug 2025 10:44:28 -0300 Subject: [PATCH] refactor: remove redundant configure_outputs method Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) --- src/meta_plugin/mod.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/meta_plugin/mod.rs b/src/meta_plugin/mod.rs index e23df99..d049131 100644 --- a/src/meta_plugin/mod.rs +++ b/src/meta_plugin/mod.rs @@ -253,13 +253,6 @@ pub trait MetaPlugin where Self: 'static { std::collections::HashMap::new() } - // Configure plugin outputs mapping - fn configure_outputs(&mut self, outputs: &std::collections::HashMap) -> anyhow::Result<()> { - for (key, value) in outputs { - self.outputs_mut().insert(key.clone(), value.clone()); - } - Ok(()) - } // Method to downcast to concrete type (for checking finalization state) fn as_any_mut(&mut self) -> &mut dyn std::any::Any where Self: Sized {