Merge "Fix a copy/paste typo in ViewPropertyAnimator"

This commit is contained in:
Nick Kralevich
2014-07-05 16:47:22 +00:00
committed by Gerrit Code Review

View File

@@ -314,8 +314,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;