diff options
Diffstat (limited to 'components/style/values/animated/mod.rs')
-rw-r--r-- | components/style/values/animated/mod.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/style/values/animated/mod.rs b/components/style/values/animated/mod.rs index 29e74859cd6..267ef0c8e6f 100644 --- a/components/style/values/animated/mod.rs +++ b/components/style/values/animated/mod.rs @@ -298,7 +298,6 @@ where } } - impl<T> ToAnimatedValue for Box<[T]> where T: ToAnimatedValue, @@ -307,8 +306,7 @@ where #[inline] fn to_animated_value(self) -> Self::AnimatedValue { - self - .into_vec() + self.into_vec() .into_iter() .map(T::to_animated_value) .collect::<Vec<_>>() |