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

Commit 6edba87d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Sort saved networks using case insensitive order."

parents b11abb9c bfe6f212
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ public class SavedAccessPointsWifiSettings extends SettingsPreferenceFragment
        Collections.sort(accessPoints, new Comparator<AccessPoint>() {
            public int compare(AccessPoint ap1, AccessPoint ap2) {
                if (ap1.getConfigName() != null) {
                    return ap1.getConfigName().compareTo(ap2.getConfigName());
                    return ap1.getConfigName().compareToIgnoreCase(ap2.getConfigName());
                } else {
                    return -1;
                }