Skip to content

Commit

Permalink
Fixed bug in parcelable implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
dlew committed Jun 25, 2014
1 parent 812d28e commit 017c5e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void writeToParcel(Parcel dest, int flags) {
}

private GfyMetadata(Parcel in) {
this.mGfyItem = in.readParcelable(((Object) mGfyItem).getClass().getClassLoader());
this.mGfyItem = in.readParcelable(GfyItem.class.getClassLoader());
}

public static final Parcelable.Creator<GfyMetadata> CREATOR = new Parcelable.Creator<GfyMetadata>() {
Expand Down

0 comments on commit 017c5e7

Please sign in to comment.