From 1994dbb1c8c74861e2660f3a04994d8d99c04a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Sat, 25 May 2019 03:22:21 +0200 Subject: [PATCH] style: Revert a change that ended up not being needed and busts the servo build. --- components/style/values/animated/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/style/values/animated/mod.rs b/components/style/values/animated/mod.rs index 40edbce73ff..267ef0c8e6f 100644 --- a/components/style/values/animated/mod.rs +++ b/components/style/values/animated/mod.rs @@ -10,7 +10,7 @@ use crate::properties::PropertyId; use crate::values::computed::length::LengthPercentage; -use crate::values::computed::url::{ComputedImageUrl, ComputedUrl}; +use crate::values::computed::url::ComputedUrl; use crate::values::computed::Angle as ComputedAngle; use crate::values::computed::Image; use crate::values::specified::SVGPathData; @@ -380,7 +380,6 @@ trivial_to_animated_value!(Au); trivial_to_animated_value!(LengthPercentage); trivial_to_animated_value!(ComputedAngle); trivial_to_animated_value!(ComputedUrl); -trivial_to_animated_value!(ComputedImageUrl); trivial_to_animated_value!(bool); trivial_to_animated_value!(f32); // Note: This implementation is for ToAnimatedValue of ShapeSource.