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

Commit 3ec379cf authored by Wink Saville's avatar Wink Saville Committed by Android (Google) Code Review
Browse files

Merge "getActiveSubscriptionInfoList used wrong slection operator." into lmp-mr1-dev

parents 7860f2c3 2236bf11
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -533,8 +533,7 @@ public class SubscriptionController extends ISub.Stub {
            return subList;
        }

        subList = getSubInfo(SubscriptionManager.SIM_SLOT_INDEX
                + "!=" + SubscriptionManager.INVALID_SIM_SLOT_INDEX, null);
        subList = getSubInfo(SubscriptionManager.SIM_SLOT_INDEX + ">=0", null);
        if (subList != null) {
            // FIXME: Unnecessary when an insertion sort is used!
            Collections.sort(subList, new Comparator<SubscriptionInfo>() {