Skip to content

Commit

Permalink
writeParcelable is the method that mirrors readParcelable
Browse files Browse the repository at this point in the history
  • Loading branch information
mtotschnig committed Jun 27, 2017
1 parent d2055d1 commit 7ef4793
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ private SavedState(Parcel in) {
@Override
public void writeToParcel(Parcel out, int flags) {
super.writeToParcel(out, flags);
out.writeValue(wrappedState);
out.writeParcelable(wrappedState, flags);
}

public static final Parcelable.Creator<SavedState> CREATOR
Expand Down

0 comments on commit 7ef4793

Please sign in to comment.