From 952670d9cf533ed3529b7960f6c88399a400a147 Mon Sep 17 00:00:00 2001 From: Doris Liu Date: Tue, 12 Apr 2016 17:43:00 -0700 Subject: [PATCH] rm log spam Bug: 27385133 Change-Id: Ia97fbba61da691e2fde91ed1a857e0478046f8c0 --- libs/hwui/Animator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/hwui/Animator.cpp b/libs/hwui/Animator.cpp index bd71e0d579f89..4d65782f684be 100644 --- a/libs/hwui/Animator.cpp +++ b/libs/hwui/Animator.cpp @@ -226,7 +226,7 @@ void BaseRenderNodeAnimator::transitionToRunning(AnimationContext& context) { // Set to 0 so that the animate() basically instantly finishes mStartTime = 0; } - if (mDuration < 0 || mDuration > 50000) { + if (mDuration < 0) { ALOGW("Your duration is strange and confusing: %" PRId64, mDuration); } }