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

Commit 821890dc authored by Vinit Deshpande's avatar Vinit Deshpande Committed by Android Git Automerger
Browse files

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

* commit 'dd14bad8':
  correctly print wificonfiguration creation and update time
parents 0ed62962 dd14bad8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1014,10 +1014,10 @@ public class WifiConfiguration implements Parcelable {
            sbuf.append(this.numNoInternetAccessReports).append("\n");
        }
        if (this.updateTime != null) {
            sbuf.append("creation=").append(this.updateTime).append("\n");
            sbuf.append("update ").append(this.updateTime).append("\n");
        }
        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.selfAdded) sbuf.append(" selfAdded");