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

Commit 07b815ea authored by Sanket Padawe's avatar Sanket Padawe Committed by Android Git Automerger
Browse files

am 3a017f2c: Merge "Fix display of "null" string shown in Wifi Settings for AP." into mnc-dev

* commit '3a017f2c':
  Fix display of "null" string shown in Wifi Settings for AP.
parents 9d3df9b7 3a017f2c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -755,7 +755,7 @@ public class AccessPoint implements Comparable<AccessPoint> {
        int index = state.ordinal();

        if (index >= formats.length || formats[index].length() == 0) {
            return null;
            return "";
        }
        return String.format(formats[index], ssid);
    }