Browse Source

Implement Serializable interface in ReflogEntry

Change-Id: Idf798dd3981bef3dc9e17c13c12809f89089e96f
tags/v1.2.0.201112221803-r
Kevin Sawicki 12 years ago
parent
commit
7ed1ef953c

+ 5
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/ReflogEntry.java 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 @@ import org.eclipse.jgit.util.RawParseUtils;
/**
* Parsed reflog entry
*/
public class ReflogEntry {
public class ReflogEntry implements Serializable {
private static final long serialVersionUID = 1L;

private ObjectId oldId;

private ObjectId newId;

Loading…
Cancel
Save