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

Commit 8376dfba 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

Change-Id: I3cedb75df101d49da95158455377c876ac2a9369
parents bf699497 b4a450a1
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());
        }
    }