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

Commit e2879779 authored by Jack Yu's avatar Jack Yu
Browse files

Remove the obsolete APIs

Fix: 192416903
Test: FrameworksTelephonyTests
Change-Id: I2000754264b4df74f738cb3d679458722f658e23
parent 153c59ae
Loading
Loading
Loading
Loading
+1 −12
Original line number Diff line number Diff line
@@ -1407,7 +1407,7 @@ public class ServiceState implements Parcelable {
        m.putString("data-operator-numeric", mOperatorNumeric);
        m.putBoolean("manual", mIsManualNetworkSelection);
        m.putInt("radioTechnology", getRilVoiceRadioTechnology());
        m.putInt("dataRadioTechnology", getRadioTechnology());
        m.putInt("dataRadioTechnology", getRilDataRadioTechnology());
        m.putBoolean("cssIndicator", mCssIndicator);
        m.putInt("networkId", mNetworkId);
        m.putInt("systemId", mSystemId);
@@ -1545,17 +1545,6 @@ public class ServiceState implements Parcelable {
        return networkTypeToRilRadioTechnology(getDataNetworkType());
    }

    /**
     * @hide
     * @Deprecated to be removed Q3 2013 use {@link #getRilDataRadioTechnology} or
     * {@link #getRilVoiceRadioTechnology}
     */
    @UnsupportedAppUsage
    public int getRadioTechnology() {
        Rlog.e(LOG_TAG, "ServiceState.getRadioTechnology() DEPRECATED will be removed *******");
        return getRilDataRadioTechnology();
    }

    /**
     * Transform RIL radio technology {@link RilRadioTechnology} value to Network
     * type {@link NetworkType}.