Index: Source/core/animation/animatable/AnimatableDouble.cpp |
diff --git a/Source/core/animation/animatable/AnimatableDouble.cpp b/Source/core/animation/animatable/AnimatableDouble.cpp |
index a71e790152d01972f0ebea582c0d9be3aadc1954..225726fa49435ad201276a83b487d661322bbd2a 100644 |
--- a/Source/core/animation/animatable/AnimatableDouble.cpp |
+++ b/Source/core/animation/animatable/AnimatableDouble.cpp |
@@ -56,10 +56,4 @@ bool AnimatableDouble::equalTo(const AnimatableValue* value) const |
return m_number == toAnimatableDouble(value)->m_number; |
} |
-double AnimatableDouble::distanceTo(const AnimatableValue* value) const |
-{ |
- const AnimatableDouble* other = toAnimatableDouble(value); |
- return fabs(m_number - other->m_number); |
-} |
- |
} // namespace blink |