Merge "Remove empty MNC filtering when retrieving available subscriptions" into qt-dev

am: 06da2980a0

Change-Id: I924eb0f0fdf4f95294b45f171f752784f8db4604
This commit is contained in:
Antony Sargent
2019-04-30 00:14:16 -07:00
committed by android-build-merger
2 changed files with 0 additions and 52 deletions

View File

@@ -101,16 +101,6 @@ public class SubscriptionUtil {
}
}
}
// With some carriers such as Google Fi which provide a sort of virtual service that spans
// across multiple underlying networks, we end up with subscription entries for the
// underlying networks that need to be hidden from the user in the UI.
for (Iterator<SubscriptionInfo> iter = subscriptions.iterator(); iter.hasNext(); ) {
SubscriptionInfo info = iter.next();
if (TextUtils.isEmpty(info.getMncString())) {
iter.remove();
}
}
return subscriptions;
}
}