Skip to content

Commit

Permalink
fix: unneeded type constraint removed
Browse files Browse the repository at this point in the history
  • Loading branch information
pamburus committed Aug 5, 2020
1 parent 9b7ccc3 commit 4e579ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@ impl Input {
}
}

impl<I> ConcatReader<I>
where
I: Iterator<Item = Result<Input>>,
{
impl<I> ConcatReader<I> {
pub fn new(iter: I) -> Self {
Self { iter, item: None }
}
Expand Down

0 comments on commit 4e579ca

Please sign in to comment.