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

Commit c0c2e83c authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Clean up old Context references in ImsConfig" into pi-dev am: 65ac7051

am: 61729645

Change-Id: I15f1f1eeb17107e058eb75aec6d8f238113c5ab1
parents 3af768fc 61729645
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);