Loading core/java/android/view/ViewPropertyAnimator.java +2 −2 Original line number Diff line number Diff line Loading @@ -325,8 +325,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; Loading Loading
core/java/android/view/ViewPropertyAnimator.java +2 −2 Original line number Diff line number Diff line Loading @@ -325,8 +325,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; Loading