From 772bafad5adf6aeec8909c6057614e958b93bb64 Mon Sep 17 00:00:00 2001 From: Cyril Mottier Date: Wed, 2 Oct 2013 16:57:57 +0200 Subject: [PATCH] Fix a copy/paste typo in ViewPropertyAnimator Change-Id: I149351f062e874fc11da61f416da5cfa5b1cb444 --- core/java/android/view/ViewPropertyAnimator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/view/ViewPropertyAnimator.java b/core/java/android/view/ViewPropertyAnimator.java index e6bf420acccc7..500dc161789a9 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;