Browse Source

clippy: update for recent update

Jonathan Kelley 3 năm trước cách đây
mục cha
commit
d07e145df6
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/hooks/src/usefuture.rs

+ 1 - 1
packages/hooks/src/usefuture.rs

@@ -152,7 +152,7 @@ impl<A: Dep> UseFutureDep for &A {
         (*self).clone()
     }
     fn apply(self, state: &mut Vec<Box<dyn Any>>) -> bool {
-        match state.get_mut(0).map(|f| f.downcast_mut::<A>()).flatten() {
+        match state.get_mut(0).and_then(|f| f.downcast_mut::<A>()) {
             Some(val) => {
                 if *val != *self {
                     *val = self.clone();