Skip to content

Commit 7ef4793

Browse files
committed
writeParcelable is the method that mirrors readParcelable
1 parent d2055d1 commit 7ef4793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/se/emilsjolander/stickylistheaders/StickyListHeadersListView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ private SavedState(Parcel in) {
11761176
@Override
11771177
public void writeToParcel(Parcel out, int flags) {
11781178
super.writeToParcel(out, flags);
1179-
out.writeValue(wrappedState);
1179+
out.writeParcelable(wrappedState, flags);
11801180
}
11811181

11821182
public static final Parcelable.Creator<SavedState> CREATOR

0 commit comments

Comments
 (0)