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

Commit 3bdb78bd authored by Chong Zhang's avatar Chong Zhang Committed by android-build-merger
Browse files

Merge \\"Fix off-by-one in am start -R (repeat)\\" into nyc-mr1-dev am: a3fc533d

am: 0abc1076

Change-Id: I170d705d80a5d577646ab3ee1971f26a0ace057f
parents d9a6ba35 0abc1076
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -723,10 +723,10 @@ public class Am extends BaseCommand {
                System.out.println("Complete");
            }
            mRepeat--;
            if (mRepeat > 1) {
            if (mRepeat > 0) {
                mAm.unhandledBack();
            }
        } while (mRepeat > 1);
        } while (mRepeat > 0);
    }

    private void runForceStop() throws Exception {