-
-
Save invisiblek/b63bec3214faed8c5c40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java b/src/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java | |
index 1feb709..6823ef8 100644 | |
--- a/src/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java | |
+++ b/src/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java | |
@@ -776,13 +776,7 @@ public class CdmaServiceStateTracker extends ServiceStateTracker { | |
// ERI text, so here it is ignored what is coming from the modem. | |
mNewSS.setOperatorName(null, opNames[1], opNames[2]); | |
} else { | |
- String brandOverride = mUiccController.getUiccCard() != null ? | |
- mUiccController.getUiccCard().getOperatorBrandOverride() : null; | |
- if (brandOverride != null) { | |
- mNewSS.setOperatorName(brandOverride, brandOverride, opNames[2]); | |
- } else { | |
- mNewSS.setOperatorName(opNames[0], opNames[1], opNames[2]); | |
- } | |
+ mNewSS.setOperatorName(opNames[0], opNames[1], opNames[2]); | |
} | |
} else { | |
if (DBG) log("EVENT_POLL_STATE_OPERATOR_CDMA: error parsing opNames"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment