Merge "Implement Serializable interface in ReflogEntry"

This commit is contained in:
Shawn Pearce 2011-11-28 21:50:40 -05:00 committed by Code Review
commit 5e5640ff62
1 changed files with 5 additions and 1 deletions

View File

@ -44,6 +44,8 @@
package org.eclipse.jgit.storage.file;
import java.io.Serializable;
import org.eclipse.jgit.JGitText;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.ObjectId;
@ -53,7 +55,9 @@
/**
* Parsed reflog entry
*/
public class ReflogEntry {
public class ReflogEntry implements Serializable {
private static final long serialVersionUID = 1L;
private ObjectId oldId;
private ObjectId newId;