Remove a dbg! statement left over from debugging (#15867)

I wonder who left that there...
This commit is contained in:
Liam Gallagher 2024-10-12 22:07:01 +13:00 committed by GitHub
parent 992d17bc7f
commit 813c75958d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -430,7 +430,7 @@ impl Body for BrpStream {
}
fn is_end_stream(&self) -> bool {
dbg!(self.rx.is_closed())
self.rx.is_closed()
}
}