Skip to content
Snippets Groups Projects
Commit dd192a65 authored by Sanket Padawe's avatar Sanket Padawe Committed by android-build-merger
Browse files

Update SubscriptionManager API by replacing 'id' & 'idx' with 'index'. am: 56eaeedb

am: efad207a

Change-Id: Ia56cbe2705ca7db11773cb79373e64cefed56d2a
parents 06dbece4 efad207a
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment