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

Commit 75652586 authored by Joonhun Shin's avatar Joonhun Shin Committed by Android (Google) Code Review
Browse files

Merge "Cleanup : remove...

Merge "Cleanup : remove prevent_invocation_repeat_of_ril_call_when_device_does_not_support_voice flag" into main
parents 603a1dd1 f78cd4e0
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -43,14 +43,6 @@ flag {
    bug: "315973270"
}

# OWNER=joonhunshin TARGET=24Q3
flag {
    name: "prevent_invocation_repeat_of_ril_call_when_device_does_not_support_voice"
    namespace: "telephony"
    description: "This flag prevents repeat invocation of call related APIs in RIL when the device is not voice capable"
    bug: "290833783"
}

# OWNER=rambowang TARGET=25Q2
flag {
    name: "support_carrier_services_for_hsum"
+4 −6
Original line number Diff line number Diff line
@@ -99,13 +99,11 @@ public abstract class CallTracker extends Handler {

    protected void
    pollCallsAfterDelay() {
        if (mFeatureFlags.preventInvocationRepeatOfRilCallWhenDeviceDoesNotSupportVoice()) {
        if (!mCi.getHalVersion(TelephonyManager.HAL_SERVICE_VOICE)
                .greaterOrEqual(RIL.RADIO_HAL_VERSION_1_4)) {
            log("Skip polling because HAL_SERVICE_VOICE < RADIO_HAL_VERSION_1.4");
            return;
        }
        }

        Message msg = obtainMessage();