From 18fdb5684fb91141b4d8126a492c466036dbe9b4 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Wed, 21 May 2014 22:34:17 +0200 Subject: [PATCH] Add missing since tags Change-Id: I6090b81aa963731af369babbe71b05ac817ee3dc Signed-off-by: Matthias Sohn --- org.eclipse.jgit/src/org/eclipse/jgit/api/ArchiveCommand.java | 2 ++ .../src/org/eclipse/jgit/util/GSSManagerFactory.java | 1 + 2 files changed, 3 insertions(+) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/ArchiveCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/ArchiveCommand.java index 88bc2aee7..32a355738 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/ArchiveCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/ArchiveCommand.java @@ -475,6 +475,7 @@ public class ArchiveCommand extends GitCommand { * Set an optional parameter path. without an optional path parameter, all * files and subdirectories of the current working directory are included in * the archive. If one or more paths are specified, only these are included. + * * @param paths * file names (e.g file1.c) or directory names (e.g. * dir to add dir/file1 and @@ -482,6 +483,7 @@ public class ArchiveCommand extends GitCommand { * the directory, recursively. Fileglobs (e.g. *.c) are not yet * supported. * @return this + * @since 3.4 */ public ArchiveCommand setPaths(String... paths) { this.paths = Arrays.asList(paths); diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/GSSManagerFactory.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/GSSManagerFactory.java index 7f1a9b12a..da57999e2 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/util/GSSManagerFactory.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/GSSManagerFactory.java @@ -52,6 +52,7 @@ import org.ietf.jgss.GSSManager; /** * Factory to detect which GSSManager implementation should be used. * + * @since 3.4 */ public abstract class GSSManagerFactory { /**