aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2013-10-24 08:32:47 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2013-10-24 08:32:47 +0200
commit72c761857175ace2ac1025409e4afbc92de489d8 (patch)
treeb86aeee1af0934d358ccd322b5ce3ec62574c780
parent09711a4bb9f7fc07b8f8730f5bca3dbac16e909a (diff)
downloadjgit-72c761857175ace2ac1025409e4afbc92de489d8.tar.gz
jgit-72c761857175ace2ac1025409e4afbc92de489d8.zip
Add / fix @since tags
Change-Id: I1e5bea968b3c79df4f600b75fde5b547ebadde36 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java2
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java2
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java2
3 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
index c2bf744108..6feb1862ed 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
@@ -68,7 +68,7 @@ import static org.eclipse.jgit.lib.Constants.R_TAGS;
/**
* Given a commit, show the most recent tag that is reachable from a commit.
*
- * @since 3.1
+ * @since 3.2
*/
public class DescribeCommand extends GitCommand<String> {
private final RevWalk w;
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
index dc54e7e3b5..08ab88005d 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
@@ -668,7 +668,7 @@ public class Git {
* commit in terms of the nearest git tag.
*
* @return a {@link DescribeCommand}.
- * @since 3.1
+ * @since 3.2
*/
public DescribeCommand describe() {
return new DescribeCommand(repo);
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java
index 4c518eea9a..e000cfbe64 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java
@@ -77,6 +77,7 @@ public class ServiceMayNotContinueException extends IOException {
* be shown to an end-user.
* @param cause
* the cause of the exception.
+ * @since 3.2
*/
public ServiceMayNotContinueException(String msg, Throwable cause) {
super(msg);
@@ -88,6 +89,7 @@ public class ServiceMayNotContinueException extends IOException {
*
* @param cause
* the cause of the exception.
+ * @since 3.2
*/
public ServiceMayNotContinueException(Throwable cause) {
this(JGitText.get().internalServerError, cause);