am d2e10d59: Merge change 21860 into eclair

Merge commit 'd2e10d5912f440186b79b1e2ab662ff7201ee595'

* commit 'd2e10d5912f440186b79b1e2ab662ff7201ee595':
  Return ICC Card ABSENT instead of NOT_READY when it is not present.
This commit is contained in:
Jaikumar Ganesh
2009-08-19 16:52:00 -07:00
committed by Android Git Automerger

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();