summaryrefslogtreecommitdiffstats
path: root/core/java/android/view
diff options
context:
space:
mode:
authorCyril Mottier <cyrilmottier@gmail.com>2013-10-02 16:57:57 +0200
committerCyril Mottier <cyrilmottier@gmail.com>2013-10-02 16:57:57 +0200
commit772bafad5adf6aeec8909c6057614e958b93bb64 (patch)
tree05b65b9d07a05bfaa9be69fd49f88b6e6f3e8f03 /core/java/android/view
parent7fb64c6e6c3360a61a8c726d0edbda3a20c037ac (diff)
downloadframeworks_base-772bafad5adf6aeec8909c6057614e958b93bb64.zip
frameworks_base-772bafad5adf6aeec8909c6057614e958b93bb64.tar.gz
frameworks_base-772bafad5adf6aeec8909c6057614e958b93bb64.tar.bz2
Fix a copy/paste typo in ViewPropertyAnimator
Change-Id: I149351f062e874fc11da61f416da5cfa5b1cb444
Diffstat (limited to 'core/java/android/view')
-rw-r--r--core/java/android/view/ViewPropertyAnimator.java4
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;