diff options
author | Cyril Mottier <cyrilmottier@gmail.com> | 2013-10-02 16:57:57 +0200 |
---|---|---|
committer | Cyril Mottier <cyrilmottier@gmail.com> | 2013-10-02 16:57:57 +0200 |
commit | 772bafad5adf6aeec8909c6057614e958b93bb64 (patch) | |
tree | 05b65b9d07a05bfaa9be69fd49f88b6e6f3e8f03 | |
parent | 7fb64c6e6c3360a61a8c726d0edbda3a20c037ac (diff) | |
download | frameworks_base-772bafad5adf6aeec8909c6057614e958b93bb64.zip frameworks_base-772bafad5adf6aeec8909c6057614e958b93bb64.tar.gz frameworks_base-772bafad5adf6aeec8909c6057614e958b93bb64.tar.bz2 |
Fix a copy/paste typo in ViewPropertyAnimator
Change-Id: I149351f062e874fc11da61f416da5cfa5b1cb444
-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; |