From 85b62b4c9ce57e4caa7b10cd770b022bfef24ea9 Mon Sep 17 00:00:00 2001 From: Andrey Loskutov Date: Wed, 24 Sep 2014 11:18:49 +0200 Subject: [PATCH] Fixed API violation errors for 3.6 in ConfigConstants Change-Id: Ibeb09eb23d47412fa93493bb4e81d24d437e31bc Signed-off-by: Andrey Loskutov --- .../src/org/eclipse/jgit/lib/ConfigConstants.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java index b905c9593..61b05c8b4 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -226,10 +226,18 @@ public class ConfigConstants { /** The "pruneexpire" key */ public static final String CONFIG_KEY_PRUNEEXPIRE = "pruneexpire"; - /** The "aggressiveDepth" key */ + /** + * The "aggressiveDepth" key + * + * @since 3.6 + */ public static final String CONFIG_KEY_AGGRESSIVE_DEPTH = "aggressiveDepth"; - /** The "aggressiveWindow" key */ + /** + * The "aggressiveWindow" key + * + * @since 3.6 + */ public static final String CONFIG_KEY_AGGRESSIVE_WINDOW = "aggressiveWindow"; /** The "mergeoptions" key */