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

Commit edbedd28 authored by Pierre Vandwalle's avatar Pierre Vandwalle
Browse files

correctly print wificonfiguration creation and update time

Change-Id: I1c4abf9bed86cddea3592f0604def1a7727b73fc
parent 99aa13ec
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");