1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-12-18 01:43:58 +01:00

remove rogue eprintln

This commit is contained in:
Rob Ede 2021-05-07 10:14:25 +01:00
parent 947caa3599
commit a9dc1586a0
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933

View File

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