summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg <robin.rosenberg@dewire.com>2014-07-15 11:32:45 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2014-09-04 11:35:17 +0200
commit1bb72eb758e4b0614c2eadce00f7ec61ffee6667 (patch)
tree59117f41adf9793e6ec7c6cb1dd80d41281d93d9
parent2f6372337cfd5944e2179f5ec5e2dbe0cbc96386 (diff)
downloadjgit-1bb72eb758e4b0614c2eadce00f7ec61ffee6667.tar.gz
jgit-1bb72eb758e4b0614c2eadce00f7ec61ffee6667.zip
Fix warning about missing serialVersionUID
Change-Id: Ia9532d1aaf92df9073c85c44ff2ca94796deefc2
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/errors/StashApplyFailureException.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/StashApplyFailureException.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/StashApplyFailureException.java
index a9492b2a1f..25d7e4d474 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/StashApplyFailureException.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/errors/StashApplyFailureException.java
@@ -7,6 +7,8 @@ import org.eclipse.jgit.api.errors.GitAPIException;
*/
public class StashApplyFailureException extends GitAPIException {
+ private static final long serialVersionUID = 1L;
+
/**
* Create a StashApplyFailedException
*