diff options
-rw-r--r-- | core/java/android/view/ViewPropertyAnimator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/ViewPropertyAnimator.java b/core/java/android/view/ViewPropertyAnimator.java index e6bf420..500dc16 100644 --- a/core/java/android/view/ViewPropertyAnimator.java +++ b/core/java/android/view/ViewPropertyAnimator.java @@ -309,8 +309,8 @@ public class ViewPropertyAnimator { */ public ViewPropertyAnimator setStartDelay(long startDelay) { if (startDelay < 0) { - throw new IllegalArgumentException("Animators cannot have negative duration: " + - startDelay); + throw new IllegalArgumentException("Animators cannot have negative start " + + "delay: " + startDelay); } mStartDelaySet = true; mStartDelay = startDelay; |