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

Commit bc24a9e8 authored by Rakesh Pallerla's avatar Rakesh Pallerla Committed by Steve Kondik
Browse files

Telephony (MSIM): Change the code to use @bool/kg_use_all_caps.

Change the to use value from resources @bool/kg_use_all_caps
in MSimCarrierText class to be in line with base class.

Change-Id: I40bf386e867ff6b061008881fa125763b989776c
CRs-Fixed: 587508
parent 7193da0d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ public class MSimCarrierText extends CarrierText {
        CharSequence text = "";
        for (int i = 0; i < simState.length; i++) {
            CharSequence displayText = getCarrierTextForSimState(simState[i], plmn[i], spn[i]);
            if (KeyguardViewManager.USE_UPPER_CASE) {
            if (mContext.getResources().getBoolean(R.bool.kg_use_all_caps)) {
                displayText = (displayText != null ? displayText.toString().toUpperCase() : "");
            }
            text = (TextUtils.isEmpty(text)