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

Commit 81376616 authored by Tyler Gunn's avatar Tyler Gunn Committed by Automerger Merge Worker
Browse files

DO NOT MERGE Fix sorting issue during emergency call attempt. am: af569ca6

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/services/Telecomm/+/16460017

Change-Id: I7a9567740b8446c9b249097dee289dfb10ad57c0
parents 21bc22a0 af569ca6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ public final class TelephonyUtil {

                // Then by hashcode
                if (retval == 0) {
                    retval = account1.hashCode() - account2.hashCode();
                    retval = Integer.compare(account1.hashCode(), account2.hashCode());
                }
                return retval;
            }