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

Unverified Commit 4ed4bfbf authored by Kevin F. Haggerty's avatar Kevin F. Haggerty
Browse files

Merge tag 'android-security-10.0.0_r62' into staging/lineage-17.1_merge-android-security-10.0.0_r62

Android security 10.0.0 release 62

* tag 'android-security-10.0.0_r62':
  Fix sorting issue during emergency call attempt.

Change-Id: Ib24e3cdc771b774a87ca9a349964fdb9131e22fa
parents 5407855f 11c8303d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -593,7 +593,7 @@ public class CreateConnectionProcessor implements CreateConnectionResponse {
            }

            // then by hashcode
            return account1.hashCode() - account2.hashCode();
            return Integer.compare(account1.hashCode(), account2.hashCode());
        });
    }