]> source.dussan.org Git - jgit.git/commitdiff
Add / fix @since tags 19/17719/1
authorMatthias Sohn <matthias.sohn@sap.com>
Thu, 24 Oct 2013 06:32:47 +0000 (08:32 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Thu, 24 Oct 2013 06:32:47 +0000 (08:32 +0200)
Change-Id: I1e5bea968b3c79df4f600b75fde5b547ebadde36
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java
org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/ServiceMayNotContinueException.java

index c2bf74410874a99675fafa7f78cdfc47d4f78c45..6feb1862ed5366f90af4802c617398403ee2d69e 100644 (file)
@@ -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;
index dc54e7e3b56a91e0c3df8cea899e9151b56e7dde..08ab88005d8cbf74223bbb9ff4e1a9455bc53fac 100644 (file)
@@ -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);
index 4c518eea9a9a0a78bd7055f2cfd696328893af3f..e000cfbe643653de25736f9aff9f00a2f0d06ad3 100644 (file)
@@ -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);