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

Commit 396b83b0 authored by Chris Tate's avatar Chris Tate Committed by Gerrit Code Review
Browse files

Merge "Fix overflow/underflow problem in comparison"

parents 7f0b5652 cdaaeeec
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -369,10 +369,10 @@ class AlarmManagerService extends SystemService {
        public int compare(Batch b1, Batch b2) {
            long when1 = b1.start;
            long when2 = b2.start;
            if (when1 - when2 > 0) {
            if (when1 > when2) {
                return 1;
            }
            if (when1 - when2 < 0) {
            if (when1 < when2) {
                return -1;
            }
            return 0;
@@ -1482,10 +1482,10 @@ class AlarmManagerService extends SystemService {
        public int compare(Alarm a1, Alarm a2) {
            long when1 = a1.whenElapsed;
            long when2 = a2.whenElapsed;
            if (when1 - when2 > 0) {
            if (when1 > when2) {
                return 1;
            }
            if (when1 - when2 < 0) {
            if (when1 < when2) {
                return -1;
            }
            return 0;