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

Commit 9918084f authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Change TimestampedScoredNetwork parceling."

parents e7c9eed5 6476d594
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ class TimestampedScoredNetwork implements Parcelable {
    }

    protected TimestampedScoredNetwork(Parcel in) {
        mScore = ScoredNetwork.CREATOR.createFromParcel(in);
        mScore = in.readParcelable(ScoredNetwork.class.getClassLoader());
        mUpdatedTimestampMillis = in.readLong();
    }

@@ -57,7 +57,7 @@ class TimestampedScoredNetwork implements Parcelable {

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        mScore.writeToParcel(dest, flags);
        dest.writeParcelable(mScore, flags);
        dest.writeLong(mUpdatedTimestampMillis);
    }