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

Commit c5a53c41 authored by Jack Yu's avatar Jack Yu
Browse files

Improved the network type to string

Bug: 227781379
Test: atest DataNetworkControllerTest DataProfileManagerTest
Change-Id: I6d09ade1650e226a965547e3f78e74f3f2ffec59
parent 97c8cee1
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3227,8 +3227,10 @@ public class TelephonyManager {
                return "LTE_CA";
            case NETWORK_TYPE_NR:
                return "NR";
            default:
            case NETWORK_TYPE_UNKNOWN:
                return "UNKNOWN";
            default:
                return "UNKNOWN(" + type + ")";
        }
    }