diff options
| author | 2020-01-06 21:36:45 +0000 | |
|---|---|---|
| committer | 2020-01-06 21:36:45 +0000 | |
| commit | 478a044d32f8d8798e55ad7d75937ad6eea470eb (patch) | |
| tree | c2c312ededdcdfb626b7fa043c36dce866c2efb5 | |
| parent | 070e602547644e54d4d1412d0693df1ade9f21e6 (diff) | |
| parent | 25dcad3f597081ec6080f21cbdfbef011a7758de (diff) | |
Merge "Commented out NETWORK_TYPE_LTE_CA in logging function"
| -rw-r--r-- | services/core/java/com/android/server/TelephonyRegistry.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/TelephonyRegistry.java b/services/core/java/com/android/server/TelephonyRegistry.java index 783715cd84bc..2fb0048345c6 100644 --- a/services/core/java/com/android/server/TelephonyRegistry.java +++ b/services/core/java/com/android/server/TelephonyRegistry.java @@ -2651,8 +2651,14 @@ public class TelephonyRegistry extends ITelephonyRegistry.Stub { return "TD_SCDMA"; case TelephonyManager.NETWORK_TYPE_IWLAN: return "IWLAN"; - case TelephonyManager.NETWORK_TYPE_LTE_CA: - return "LTE_CA"; + + //TODO: This network type is marked as hidden because it is not a + // true network type and we are looking to remove it completely from the available list + // of network types. Since this method is only used for logging, in the event that this + // network type is selected, the log will read as "Unknown." + //case TelephonyManager.NETWORK_TYPE_LTE_CA: + // return "LTE_CA"; + case TelephonyManager.NETWORK_TYPE_NR: return "NR"; default: |