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

Commit 9d813b92 authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by android-build-merger
Browse files

Merge "Have getSupportedModemCount always rely on system properties." am: d7f38d74

am: 10cf5939

Change-Id: I3220634cf014483d8bfbfbf38f628fc22a9a952d
parents 7a318f06 10cf5939
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -431,18 +431,8 @@ public class TelephonyManager {
     * {@link #getActiveModemCount} returns 1 while this API returns 2.
     */
    public @ModemCount int getSupportedModemCount() {
        // TODO: b/139642279 when turning on this feature, remove dependency of
        // PROPERTY_REBOOT_REQUIRED_ON_MODEM_CHANGE and always return result based on
        // PROPERTY_MAX_ACTIVE_MODEMS.
        String rebootRequired = SystemProperties.get(
                TelephonyProperties.PROPERTY_REBOOT_REQUIRED_ON_MODEM_CHANGE);
        if (rebootRequired.equals("false")) {
            // If no reboot is required, return max possible active modems.
            return SystemProperties.getInt(
                    TelephonyProperties.PROPERTY_MAX_ACTIVE_MODEMS, getPhoneCount());
        } else {
            return getPhoneCount();
        }
        return SystemProperties.getInt(TelephonyProperties.PROPERTY_MAX_ACTIVE_MODEMS,
                getActiveModemCount());
    }

    /** {@hide} */