From c676e8e65086a0e4265f2789ae345b0c9cb29656 Mon Sep 17 00:00:00 2001 From: zeefaad Date: Fri, 12 Jun 2026 15:48:03 +0200 Subject: [PATCH] supr com --- src/fir.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/fir.rs b/src/fir.rs index aa7cbee..f965558 100644 --- a/src/fir.rs +++ b/src/fir.rs @@ -59,11 +59,7 @@ where fn next(&mut self) -> Option { match self.inner.next()? { - Ok(chunk) => { - // self.process_chunk(&mut chunk); - // Some(Ok(chunk)) - Some(Ok(self.process_chunk(&chunk))) - } + Ok(chunk) => Some(Ok(self.process_chunk(&chunk))), Err(e) => Some(Err(e)), } }