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

Commit 264901e6 authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by Android (Google) Code Review
Browse files

Merge "Remove mistake of calling iSub twice in getSelectableSubscriptionInfoList"

parents 6a297058 f6169a09
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2617,8 +2617,7 @@ public class SubscriptionManager {
        if (availableList == null) {
            return null;
        } else {
            return getAvailableSubscriptionInfoList().stream()
                    .filter(subInfo -> !shouldHideSubscription(subInfo))
            return availableList.stream().filter(subInfo -> !shouldHideSubscription(subInfo))
                    .collect(Collectors.toList());
        }
    }