pull/427/head
yjhmelody 5 years ago
parent 17db7ffcd3
commit 204da33391

@ -53,10 +53,13 @@ impl<L: Stream, R: Stream> Future for NeFuture<L, R>
}
match (l_val, r_val) {
(Some(l), Some(r)) if l == r => {continue;},
_ => { return Poll::Ready(true); },
(Some(l), Some(r)) if l == r => {
continue;
}
_ => {
return Poll::Ready(true);
}
}
}
}
}
Loading…
Cancel
Save