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

Commit b4a450a1 authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by Gerrit Code Review
Browse files

Merge "Remove mistake of calling iSub twice in getSelectableSubscriptionInfoList"

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