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

Commit f5316de4 authored by Neil Fuller's avatar Neil Fuller
Browse files

Fix toString()

Add a missing comma.

Bug: 219693030
Bug: 222295093
Test: Build only
Change-Id: Ia57275b84899ef74658bcdb77980f0e3834183b4
parent 4ffa234e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ public final class NetworkTimeSuggestion {
    public String toString() {
        return "NetworkTimeSuggestion{"
                + "mUnixEpochTime=" + mUnixEpochTime
                + "mUncertaintyMillis=" + mUncertaintyMillis
                + ", mUncertaintyMillis=" + mUncertaintyMillis
                + ", mDebugInfo=" + mDebugInfo
                + '}';
    }