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

Commit c6c4984f authored by Sandeep Gutta's avatar Sandeep Gutta Committed by jianzhou
Browse files

Compilation fixes

Change-Id: Iec5fcfe828e39004a0c2113d77f6517e55d27d66
parent 8725026e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -441,7 +441,8 @@ public class ApnEditor extends PreferenceActivity
            }
            if (newValue != null && newValue.equals(oldValue) == false) {
                if (values[mvnoIndex].equals("SPN")) {
                    mMvnoMatchData.setText(mTelephonyManager.getSimOperatorNameForSubscription(mSubId));
                    mMvnoMatchData.setText(
                            mTelephonyManager.getSimOperatorNameForSubscription(mSubId));
                } else if (values[mvnoIndex].equals("IMSI")) {
                    String numeric = mTelephonyManager.getSimOperator(mSubId);
                    mMvnoMatchData.setText(numeric + "x");
+1 −1
Original line number Diff line number Diff line
@@ -603,7 +603,7 @@ public class MSimStatus extends PreferenceActivity {

            String operatorName = null;
            if (/*FeatureQuery.FEATURE_SHOW_CARRIER_BY_MCCMNC*/false) {
                String spn = mTelephonyManager.getDefault().getNetworkOperatorForSubscription(phoneId);
                String spn = mTelephonyManager.getDefault().getNetworkOperatorForPhone(phoneId);
                operatorName = spn;
            } else {
                operatorName = mServiceState[phoneId].getOperatorAlphaLong();