diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2014-11-03 17:06:46 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-11-03 17:08:39 +0100 |
commit | c017ac4c85cab7449a49b681843b9bc33e54d2b6 (patch) | |
tree | 2b7b63bd789ebd96be9570ce4446513e7d84ec2f /org.eclipse.jgit | |
parent | 696de653f3ba99df7da50708bac21257d8beb718 (diff) | |
download | jgit-c017ac4c85cab7449a49b681843b9bc33e54d2b6.tar.gz jgit-c017ac4c85cab7449a49b681843b9bc33e54d2b6.zip |
Add missing @since tags
Change-Id: I27207bafe0ce31caab25ab9c0be1f22adf151783
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java | 5 | ||||
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java | 3 |
2 files changed, 7 insertions, 1 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 7361e29ed4..6bca938b5e 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java @@ -208,7 +208,10 @@ public class ConfigConstants { /** The "update" key */ public static final String CONFIG_KEY_UPDATE = "update"; - /** The "update" key */ + /** + * The "ignore" key + * @since 3.6 + */ public static final String CONFIG_KEY_IGNORE = "ignore"; /** The "compression" key */ diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java index 684b18af9b..1e0a764682 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java @@ -315,6 +315,7 @@ public class IndexDiff { /** * @param mode * defines how modifications in submodules are treated + * @since 3.6 */ public void setIgnoreSubmoduleMode(IgnoreSubmoduleMode mode) { this.ignoreSubmoduleMode = mode; @@ -322,6 +323,7 @@ public class IndexDiff { /** * A factory to producing WorkingTreeIterators + * @since 3.6 */ public interface WorkingTreeIteratorFactory { /** @@ -341,6 +343,7 @@ public class IndexDiff { * Allows higher layers to set the factory for WorkingTreeIterators. * * @param wTreeIt + * @since 3.6 */ public void setWorkingTreeItFactory(WorkingTreeIteratorFactory wTreeIt) { this.wTreeIt = wTreeIt; |