diff options
author | Kevin Sawicki | 2011-11-10 19:31:55 +0000 |
---|---|---|
committer | Kevin Sawicki | 2011-11-10 19:31:55 +0000 |
commit | 0c1e1b71f49a3020b40385e2224ff97244d30574 (patch) | |
tree | f2d97f9bb85b75d1206a67a7a2e2b32aef121c38 | |
parent | 84519b20ec835c68b4c3af6a19e7d54682f5846f (diff) | |
download | egit-github-0c1e1b71f49a3020b40385e2224ff97244d30574.tar.gz egit-github-0c1e1b71f49a3020b40385e2224ff97244d30574.tar.xz egit-github-0c1e1b71f49a3020b40385e2224ff97244d30574.zip |
Implement Serializable in CommitStats model class
Change-Id: I1d28dc7f23038109258298e7b666cc4fbedd30d7
Signed-off-by: Kevin Sawicki <kevin@github.com>
-rw-r--r-- | org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/CommitStats.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/CommitStats.java b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/CommitStats.java index 78fc9d37..d78b5072 100644 --- a/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/CommitStats.java +++ b/org.eclipse.egit.github.core/src/org/eclipse/egit/github/core/CommitStats.java @@ -10,10 +10,15 @@ *****************************************************************************/ package org.eclipse.egit.github.core; +import java.io.Serializable; + /** * Model class containing line differences introduced by a commit */ -public class CommitStats { +public class CommitStats implements Serializable { + + /** serialVersionUID */ + private static final long serialVersionUID = -4398346227258322028L; private int additions; |