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

Commit 4255166b authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by android-build-merger
Browse files

Merge "Remove mistake of calling iSub twice in getSelectableSubscriptionInfoList" am: b4a450a1

am: 8376dfba

Change-Id: I93234b7e139a0135cee49ccc53ef73eb1c476bd5
parents bc5ee3e1 8376dfba
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2733,8 +2733,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());
        }
    }