am 2168062b: am 0a1eb640: Merge "Carrier text handle sim removal" into lmp-mr1-dev automerge: a50a668

* commit '2168062b23c8c343330f9a7b074a51efc4780cde':
  Carrier text handle sim removal
This commit is contained in:
Jason Monk
2015-01-13 20:31:32 +00:00
committed by Android Git Automerger

View File

@@ -284,10 +284,15 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener {
KeyguardUpdateMonitorCallback cb = mCallbacks.get(j).get();
if (cb != null) {
cb.onSimStateChanged(data.subId, data.slotId, data.simState);
cb.onRefreshCarrierInfo();
}
}
}
for (int j = 0; j < mCallbacks.size(); j++) {
KeyguardUpdateMonitorCallback cb = mCallbacks.get(j).get();
if (cb != null) {
cb.onRefreshCarrierInfo();
}
}
}
/** @return List of SubscriptionInfo records, maybe empty but never null */