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

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

Merge "wifi: remove saePasswordId from getBytesForBackup"

parents 2e951c12 07904564
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -2627,7 +2627,6 @@ public class WifiConfiguration implements Parcelable {
        out.writeInt(apBand);
        out.writeInt(apChannel);
        BackupUtils.writeString(out, preSharedKey);
        BackupUtils.writeString(out, saePasswordId);
        out.writeInt(getAuthType());
        out.writeBoolean(hiddenSSID);
        return baos.toByteArray();
@@ -2651,7 +2650,6 @@ public class WifiConfiguration implements Parcelable {
        config.apBand = in.readInt();
        config.apChannel = in.readInt();
        config.preSharedKey = BackupUtils.readString(in);
        config.saePasswordId = BackupUtils.readString(in);
        config.allowedKeyManagement.set(in.readInt());
        if (version >= 3) {
            config.hiddenSSID = in.readBoolean();