diff options
author | Andrey Loskutov <loskutov@gmx.de> | 2014-09-24 11:18:49 +0200 |
---|---|---|
committer | Andrey Loskutov <loskutov@gmx.de> | 2014-09-24 11:26:06 +0200 |
commit | 85b62b4c9ce57e4caa7b10cd770b022bfef24ea9 (patch) | |
tree | 0cddc6d607dfd841e16cf868856882805fbde249 /org.eclipse.jgit/src/org/eclipse/jgit/lib | |
parent | 227357f929562e8010d96fedbe52df561af82c1d (diff) | |
download | jgit-85b62b4c9ce57e4caa7b10cd770b022bfef24ea9.tar.gz jgit-85b62b4c9ce57e4caa7b10cd770b022bfef24ea9.zip |
Fixed API violation errors for 3.6 in ConfigConstants
Change-Id: Ibeb09eb23d47412fa93493bb4e81d24d437e31bc
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java | 12 |
1 files 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 b905c9593c..61b05c8b48 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 */ |