From 72c761857175ace2ac1025409e4afbc92de489d8 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Thu, 24 Oct 2013 08:32:47 +0200 Subject: [PATCH] Add / fix @since tags Change-Id: I1e5bea968b3c79df4f600b75fde5b547ebadde36 Signed-off-by: Matthias Sohn --- org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java | 2 +- org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java | 2 +- .../eclipse/jgit/transport/ServiceMayNotContinueException.java | 2 ++ 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 c2bf74410..6feb1862e 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 @@ /** * 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 { 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 dc54e7e3b..08ab88005 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 NameRevCommand nameRev() { * 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 4c518eea9..e000cfbe6 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 ServiceMayNotContinueException(String msg) { * 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 ServiceMayNotContinueException(String msg, Throwable cause) { * * @param cause * the cause of the exception. + * @since 3.2 */ public ServiceMayNotContinueException(Throwable cause) { this(JGitText.get().internalServerError, cause);