Remove unnecessary clone in subscription::Map
This commit is contained in:
parent
c13ef73e8b
commit
e71978456a
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ where
|
||||||
) -> futures::stream::BoxStream<'static, Self::Output> {
|
) -> futures::stream::BoxStream<'static, Self::Output> {
|
||||||
use futures::StreamExt;
|
use futures::StreamExt;
|
||||||
|
|
||||||
let mapper = self.mapper.clone();
|
let mapper = self.mapper;
|
||||||
|
|
||||||
self.recipe
|
self.recipe
|
||||||
.stream(input)
|
.stream(input)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue