Remove not necessary bounds

This commit is contained in:
Daniel Sanchez Quiros 2022-12-13 16:49:52 +01:00
parent d68cd1e6c8
commit 5a209bf8c0
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ impl<M: Send + 'static> OutboundRelay<M> {
.map_err(|e| (RelayError::Send, e.0))
}
pub fn into_sink(self) -> impl Sink<M> + Send + 'static {
pub fn into_sink(self) -> impl Sink<M> {
PollSender::new(self.sender)
}
}