Skip to content

Commit

Permalink
Remove Send bound from Decoder::new_* (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
a1phyr authored Jun 21, 2021
1 parent f6af938 commit dfb4bd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decoder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ where

impl<R> Decoder<R>
where
R: Read + Seek + Send,
R: Read + Seek,
{
/// Builds a new decoder.
///
Expand Down Expand Up @@ -130,7 +130,7 @@ where

impl<R> LoopedDecoder<R>
where
R: Read + Seek + Send,
R: Read + Seek,
{
fn new(decoder: Decoder<R>) -> LoopedDecoder<R> {
Self(decoder.0)
Expand Down

0 comments on commit dfb4bd6

Please sign in to comment.