Skip to content

Commit

Permalink
Fix double-write to file on caching model.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelengland committed Apr 11, 2011
1 parent c2ec215 commit 1b3944d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/github/droidfu/cachefu/ModelCache.java
Expand Up @@ -129,7 +129,6 @@ public int describeContents() {
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(cachedModel.getClass().getCanonicalName());
dest.writeParcelable(cachedModel, flags);
cachedModel.writeToParcel(dest, flags);
}

public void readFromParcel(Parcel source) throws IOException {
Expand Down

0 comments on commit 1b3944d

Please sign in to comment.