Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d92ab153 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

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

* commit 'a6336747':
  Fix a copy/paste typo in ViewPropertyAnimator
parents 3b4c2c98 a6336747
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -314,8 +314,8 @@ public class ViewPropertyAnimator {
     */
     */
    public ViewPropertyAnimator setStartDelay(long startDelay) {
    public ViewPropertyAnimator setStartDelay(long startDelay) {
        if (startDelay < 0) {
        if (startDelay < 0) {
            throw new IllegalArgumentException("Animators cannot have negative duration: " +
            throw new IllegalArgumentException("Animators cannot have negative start " +
                    startDelay);
                "delay: " + startDelay);
        }
        }
        mStartDelaySet = true;
        mStartDelaySet = true;
        mStartDelay = startDelay;
        mStartDelay = startDelay;