diff options
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 4 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 0772687c805a..c50110a58b1b 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -2401,7 +2401,7 @@ public class TelephonyManager { * is sent to the SIM. * @param data Data to be sent with the APDU. * @return The APDU response from the ICC card with the status appended at - * the end. If an error occurs, an empty string is returned. + * the end. */ public String iccTransmitApduLogicalChannel(int channel, int cla, int instruction, int p1, int p2, int p3, String data) { @@ -2431,7 +2431,7 @@ public class TelephonyManager { * is sent to the SIM. * @param data Data to be sent with the APDU. * @return The APDU response from the ICC card with the status appended at - * the end. If an error occurs, an empty string is returned. + * the end. */ public String iccTransmitApduBasicChannel(int cla, int instruction, int p1, int p2, int p3, String data) { diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 72b04cfc6ccd..d256f9d86327 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -530,7 +530,7 @@ interface ITelephony { * is sent to the SIM. * @param data Data to be sent with the APDU. * @return The APDU response from the ICC card with the status appended at - * the end. If an error occurs, an empty string is returned. + * the end. */ String iccTransmitApduLogicalChannel(int channel, int cla, int instruction, int p1, int p2, int p3, String data); @@ -548,7 +548,7 @@ interface ITelephony { * is sent to the SIM. * @param data Data to be sent with the APDU. * @return The APDU response from the ICC card with the status appended at - * the end. If an error occurs, an empty string is returned. + * the end. */ String iccTransmitApduBasicChannel(int cla, int instruction, int p1, int p2, int p3, String data); |