remove duplicate into_iter

This commit is contained in:
Oliver Schneider 2017-01-12 21:52:38 +01:00 committed by GitHub
parent 2d1a60c056
commit 5e6ee523d2

View File

@ -432,5 +432,5 @@ pub fn iterator<I>(iter: I) -> Iterator<I>
where <I as IntoIterator>::Item: Serialize,
I: IntoIterator
{
Iterator(RefCell::new(Some(iter.into_iter())))
Iterator(RefCell::new(Some(iter)))
}