am d92ab153: am a6336747: Merge "Fix a copy/paste typo in ViewPropertyAnimator"

* commit 'd92ab153a3a33dcd1304661a9929112ab0b40d5a':
  Fix a copy/paste typo in ViewPropertyAnimator
This commit is contained in:
Nick Kralevich
2014-07-05 16:56:47 +00:00
committed by Android Git Automerger

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;