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

Commit dd14bad8 authored by Vinit Deshpande's avatar Vinit Deshpande Committed by Android (Google) Code Review
Browse files

Merge "correctly print wificonfiguration creation and update time" into mnc-dev

parents edc31579 edbedd28
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -1014,10 +1014,10 @@ public class WifiConfiguration implements Parcelable {
            sbuf.append(this.numNoInternetAccessReports).append("\n");
            sbuf.append(this.numNoInternetAccessReports).append("\n");
        }
        }
        if (this.updateTime != null) {
        if (this.updateTime != null) {
            sbuf.append("creation=").append(this.updateTime).append("\n");
            sbuf.append("update ").append(this.updateTime).append("\n");
        }
        }
        if (this.creationTime != null) {
        if (this.creationTime != null) {
            sbuf.append("update=").append(this.creationTime).append("\n");
            sbuf.append("creation").append(this.creationTime).append("\n");
        }
        }
        if (this.didSelfAdd) sbuf.append(" didSelfAdd");
        if (this.didSelfAdd) sbuf.append(" didSelfAdd");
        if (this.selfAdded) sbuf.append(" selfAdded");
        if (this.selfAdded) sbuf.append(" selfAdded");