Merge "Add TimestampedValue.toString()" am: bfa58946f7 am: 494665870f

am: 252382bede

Change-Id: If79479053e5139da52be2c004203077537613d40
This commit is contained in:
Neil Fuller
2018-06-14 02:59:40 -07:00
committed by android-build-merger

View File

@@ -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)}.