From b9a06212e1163ec0a88195211dcb0b690f2a37c9 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Mon, 20 Jan 2014 09:28:06 +0100 Subject: [PATCH] Add missing @since tags Change-Id: I16d82499d7d000096de6bd4bd08e406073557162 Signed-off-by: Matthias Sohn --- .../src/org/eclipse/jgit/api/CheckoutCommand.java | 1 + org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java index ee37bbfb8..77106f415 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java @@ -564,6 +564,7 @@ public class CheckoutCommand extends GitCommand { * if true a orphan branch will be created as part * of the checkout to the specified start point * @return this instance + * @since 3.3 */ public CheckoutCommand setOrphan(boolean orphan) { checkCallable(); diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java index d9d04bd08..d14614dc3 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java @@ -287,7 +287,11 @@ public final class Constants { /** The environment variable that contains the commiter's email */ public static final String GIT_COMMITTER_EMAIL_KEY = "GIT_COMMITTER_EMAIL"; - /** The environment variable that blocks use of the system config file */ + /** + * The environment variable that blocks use of the system config file + * + * @since 3.3 + */ public static final String GIT_CONFIG_NOSYSTEM_KEY = "GIT_CONFIG_NOSYSTEM"; /**