Merge change 21860 into eclair

* changes:
  Return ICC Card ABSENT instead of NOT_READY when it is not present.
This commit is contained in:
Android (Google) Code Review
2009-08-19 16:30:31 -07:00

View File

@@ -595,7 +595,7 @@ public abstract class IccCard {
// this is common for all radio technologies
if (!mIccCardStatus.getCardState().isCardPresent()) {
return IccCard.State.NOT_READY;
return IccCard.State.ABSENT;
}
RadioState currentRadioState = mPhone.mCM.getRadioState();