diff options
author | 2016-04-12 17:43:00 -0700 | |
---|---|---|
committer | 2016-04-12 17:43:00 -0700 | |
commit | 952670d9cf533ed3529b7960f6c88399a400a147 (patch) | |
tree | e369767acea7a64cb9f16492c51cfeb967141816 | |
parent | b6e1dafe78b2875ebe1837508e28c8dce2693b19 (diff) |
rm log spam
Bug: 27385133
Change-Id: Ia97fbba61da691e2fde91ed1a857e0478046f8c0
-rw-r--r-- | libs/hwui/Animator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Animator.cpp b/libs/hwui/Animator.cpp index bd71e0d579f8..4d65782f684b 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); } } |