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

Commit 669a4497 authored by Brad Ebinger's avatar Brad Ebinger
Browse files

Clean up old Context references in ImsConfig

Bug: 77941698
Test: Manual
Merged-In: I9d9b5ac97c710b1d742fc25730e3e28172ff75e3
Change-Id: Ieb24830ef60d1bc383639777f8e22d0dc994782a
parent 0be06926
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ public class ImsConfig {
    private static final String TAG = "ImsConfig";
    private boolean DBG = true;
    private final IImsConfig miConfig;
    private Context mContext;

    /**
     * Broadcast action: the feature enable status was changed
@@ -541,14 +540,12 @@ public class ImsConfig {
        public static final int WIFI_PREFERRED = 2;
    }

    public ImsConfig(IImsConfig iconfig, Context context) {
        if (DBG) Rlog.d(TAG, "ImsConfig created");
    public ImsConfig(IImsConfig iconfig) {
        miConfig = iconfig;
        mContext = context;
    }

    /**
     * @deprecated see {@link #getInt(int)} instead.
     * @deprecated see {@link #getConfigInt(int)} instead.
     */
    public int getProvisionedValue(int item) throws ImsException {
        return getConfigInt(item);