소스 검색

Implement Serializable interface in ReflogEntry

Change-Id: Idf798dd3981bef3dc9e17c13c12809f89089e96f
tags/v1.2.0.201112221803-r
Kevin Sawicki 12 년 전
부모
커밋
7ed1ef953c
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  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 파일 보기

@@ -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…
취소
저장