Settings: Rename NetworkSelectionStatus#getNetworkDisableReasonString

Renamed to getNetworkSelectionDisableReasonString
to be more descriptive.

Bug: 146046526
Test: compiles
Change-Id: Ib529413967d9ae008fa25196d52eb631e0c9b44c
This commit is contained in:
David Su
2020-02-25 14:26:11 -08:00
parent e4956075da
commit 565f187c0e

View File

@@ -68,7 +68,8 @@ public class WifiUtils {
for (int reason = 0; reason <= getMaxNetworkSelectionDisableReason(); reason++) {
if (networkStatus.getDisableReasonCounter(reason) != 0) {
summary.append(" ")
.append(NetworkSelectionStatus.getNetworkDisableReasonString(reason))
.append(NetworkSelectionStatus
.getNetworkSelectionDisableReasonString(reason))
.append("=")
.append(networkStatus.getDisableReasonCounter(reason));
}