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

Commit a3fc533d authored by Chong Zhang's avatar Chong Zhang Committed by Android (Google) Code Review
Browse files

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

parents d2e8ae4a 2fde9392
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 {