diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2014-07-15 11:32:45 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-09-04 11:35:17 +0200 |
commit | 1bb72eb758e4b0614c2eadce00f7ec61ffee6667 (patch) | |
tree | 59117f41adf9793e6ec7c6cb1dd80d41281d93d9 | |
parent | 2f6372337cfd5944e2179f5ec5e2dbe0cbc96386 (diff) | |
download | jgit-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.java | 2 |
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 * |