Merge "Renamed methods for clatification"

This commit is contained in:
Treehugger Robot
2023-03-04 18:38:23 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -2141,7 +2141,7 @@ public class SubscriptionManager {
try { try {
ISub iSub = TelephonyManager.getSubscriptionService(); ISub iSub = TelephonyManager.getSubscriptionService();
if (iSub != null) { if (iSub != null) {
subId = iSub.getSubId(slotIndex); subId = iSub.getSubIds(slotIndex);
} }
} catch (RemoteException ex) { } catch (RemoteException ex) {
// ignore it // ignore it

View File

@@ -244,7 +244,7 @@ interface ISub {
int getSlotIndex(int subId); int getSlotIndex(int subId);
int[] getSubId(int slotIndex); int[] getSubIds(int slotIndex);
int getDefaultSubId(); int getDefaultSubId();