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

Commit 2191a20c authored by Sean Stout's avatar Sean Stout
Browse files

Fix error in ag/1182920

Change-Id: Ia6962a39dc9b4b354ea46cfc82b85e444a29a4b4
parent eaca424f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -287,7 +287,7 @@ public final class Timer {
        final long wallClockTime = wallClock();
        final long delta = timeSinceBoot - mLastStartTime;
        final long remainingTime = mRemainingTime - delta;
        if (remainingTime < 0) {
        if (delta < 0) {
            return this;
        }
        return new Timer(mId, mState, mLength, mTotalLength, timeSinceBoot, wallClockTime,