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

Commit 565f187c authored by David Su's avatar David Su
Browse files

Settings: Rename NetworkSelectionStatus#getNetworkDisableReasonString

Renamed to getNetworkSelectionDisableReasonString
to be more descriptive.

Bug: 146046526
Test: compiles
Change-Id: Ib529413967d9ae008fa25196d52eb631e0c9b44c
parent e4956075
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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));
                }