forked from mirror/async-std
fmt code
This commit is contained in:
parent
f5efaaa7ba
commit
1ab3d901e4
1 changed files with 8 additions and 6 deletions
|
@ -53,8 +53,10 @@ impl<L: Stream, R: Stream> Future for EqFuture<L, R>
|
||||||
}
|
}
|
||||||
|
|
||||||
match (l_val, r_val) {
|
match (l_val, r_val) {
|
||||||
(Some(l), Some(r)) if l != r => {return Poll::Ready(false);},
|
(Some(l), Some(r)) if l != r => {
|
||||||
_ => {},
|
return Poll::Ready(false);
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue