Fix a copy/paste typo in ViewPropertyAnimator

Change-Id: I149351f062e874fc11da61f416da5cfa5b1cb444
This commit is contained in:
Cyril Mottier
2013-10-02 16:57:57 +02:00
parent 7fb64c6e6c
commit 772bafad5a

View File

@@ -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;