Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e717ddd4 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Updating iccCloseLogicalChannel API"

parents 058e3099 e38fd07f
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -7118,7 +7118,14 @@ public class TelephonyManager {
     */
    @RequiresFeature(PackageManager.FEATURE_TELEPHONY_SUBSCRIPTION)
    public boolean iccCloseLogicalChannel(int channel) {
        try {
            return iccCloseLogicalChannel(getSubId(), channel);
        } catch (IllegalStateException ex) {
            Rlog.e(TAG, "iccCloseLogicalChannel IllegalStateException", ex);
        } catch (IllegalArgumentException ex) {
            Rlog.e(TAG, "iccCloseLogicalChannel IllegalArgumentException", ex);
        }
        return false;
    }
    /**