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

Commit 252382be authored by Neil Fuller's avatar Neil Fuller Committed by android-build-merger
Browse files

Merge "Add TimestampedValue.toString()" am: bfa58946

am: 49466587

Change-Id: Iedd2ce7207cb8c74e9a109e8cdb6c687f45072ec
parents e5c34648 49466587
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -72,6 +72,14 @@ public final class TimestampedValue<T> {
        return Objects.hash(mReferenceTimeMillis, mValue);
    }

    @Override
    public String toString() {
        return "TimestampedValue{"
                + "mReferenceTimeMillis=" + mReferenceTimeMillis
                + ", mValue=" + mValue
                + '}';
    }

    /**
     * Read a {@link TimestampedValue} from a parcel that was stored using
     * {@link #writeToParcel(Parcel, TimestampedValue)}.