Update SubscriptionManager API by replacing 'id' & 'idx' with 'index'.

Bug: 35767068
Test: No build failure on update.
Change-Id: Iab619e80da63685212043f88d30c171a013f8925
Merged-in: Iab619e80da63685212043f88d30c171a013f8925
This commit is contained in:
Sanket Padawe
2017-03-20 15:09:23 -07:00
parent d529415c68
commit 56eaeedbb4

View File

@@ -466,19 +466,19 @@ public class MmsHttpClient {
}
/**
* Invoke hidden SubscriptionManager.getSlotId(int)
* Invoke hidden SubscriptionManager.getSlotIndex(int)
*
* @param subId the subId
* @return the SIM slot ID
*/
private static int getSlotId(final int subId) {
try {
final Method method = SubscriptionManager.class.getMethod("getSlotId", Integer.TYPE);
final Method method = SubscriptionManager.class.getMethod("getSlotIndex", Integer.TYPE);
if (method != null) {
return (Integer) method.invoke(null, subId);
}
} catch (Exception e) {
Log.w(MmsService.TAG, "SubscriptionManager.getSlotId failed " + e);
Log.w(MmsService.TAG, "SubscriptionManager.getSlotIndex failed " + e);
}
return -1;
}