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

Commit bfa58946 authored by Neil Fuller's avatar Neil Fuller Committed by Gerrit Code Review
Browse files

Merge "Add TimestampedValue.toString()"

parents 9f2362bb ca97b343
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -72,6 +72,14 @@ public final class TimestampedValue<T> {
        return Objects.hash(mReferenceTimeMillis, mValue);
        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
     * Read a {@link TimestampedValue} from a parcel that was stored using
     * {@link #writeToParcel(Parcel, TimestampedValue)}.
     * {@link #writeToParcel(Parcel, TimestampedValue)}.