fix: remove unused digest field and mutable process

Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-18 09:54:02 -03:00
parent 37b0d0e3b0
commit 15774d377d
2 changed files with 1 additions and 4 deletions

View File

@@ -96,7 +96,7 @@ impl MetaPlugin for MetaPluginProgram {
fn finalize(&mut self) -> Result<()> {
debug!("META: Finalizing program plugin");
if let Some(mut process) = self.process.take() {
if let Some(process) = self.process.take() {
// Close stdin to signal end of input
drop(self.writer.take());