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

Commit 3bf96151 authored by Deepak Sharma's avatar Deepak Sharma Committed by Automerger Merge Worker
Browse files

Fix sorting issue during emergency call attempt. am: 4f642851 am: c0714230

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

Change-Id: I2715e336448b579d8a77e755902d3544b3f3dca1
parents 06cde7bb c0714230
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -657,7 +657,7 @@ public class CreateConnectionProcessor implements CreateConnectionResponse {
            }

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