1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-07-01 16:55:08 +02:00

remove rogue eprintln

This commit is contained in:
Rob Ede
2021-05-07 10:14:25 +01:00
parent 947caa3599
commit a9dc1586a0

View File

@ -422,7 +422,6 @@ impl Future for HttpResponseBuilder {
type Output = Result<HttpResponse, Error>;
fn poll(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Self::Output> {
eprintln!("httpresponse future error");
Poll::Ready(Ok(self.finish()))
}
}