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

Commit cc210103 authored by Chris Holmes's avatar Chris Holmes Committed by Gerrit Code Review
Browse files

Revert "Telephony: Display of Operator name."

This reverts commit a08c2192.

This is causing carrier name on d2vzw to display junk characters.

Change-Id: I41d74dc5d6f51684d43108e87669bf39848f116e
parent a08c2192
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -307,10 +307,8 @@ public final class RuimRecords extends IccRecords {
                    break;
                case UserData.ENCODING_IA5:
                case UserData.ENCODING_GSM_7BIT_ALPHABET:
                    mSpn = GsmAlphabet.gsm7BitPackedToString(spnData, 0, (numBytes*8)/7);
                    break;
                case UserData.ENCODING_7BIT_ASCII:
                    mSpn =  new String(spnData, 0, numBytes, "US-ASCII");
                    mSpn = GsmAlphabet.gsm7BitPackedToString(spnData, 0, (numBytes*8)/7);
                    break;
                case UserData.ENCODING_UNICODE_16:
                    mSpn =  new String(spnData, 0, numBytes, "utf-16");