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

Commit 292b08ff authored by Neil Fuller's avatar Neil Fuller Committed by android-build-merger
Browse files

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

am: 252382be

Change-Id: If79479053e5139da52be2c004203077537613d40
parents 4fa7af16 252382be
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)}.