Bläddra i källkod

Implement Serializable interface in ReflogEntry

Change-Id: Idf798dd3981bef3dc9e17c13c12809f89089e96f
tags/v1.2.0.201112221803-r
Kevin Sawicki 12 år sedan
förälder
incheckning
7ed1ef953c
1 ändrade filer med 5 tillägg och 1 borttagningar
  1. 5
    1
      org.eclipse.jgit/src/org/eclipse/jgit/storage/file/ReflogEntry.java

+ 5
- 1
org.eclipse.jgit/src/org/eclipse/jgit/storage/file/ReflogEntry.java Visa fil

@@ -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;

Laddar…
Avbryt
Spara