]> source.dussan.org Git - jgit.git/commitdiff
Add missing @since tags 18/35818/2
authorMatthias Sohn <matthias.sohn@sap.com>
Mon, 3 Nov 2014 16:06:46 +0000 (17:06 +0100)
committerMatthias Sohn <matthias.sohn@sap.com>
Mon, 3 Nov 2014 16:08:39 +0000 (17:08 +0100)
Change-Id: I27207bafe0ce31caab25ab9c0be1f22adf151783
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java
org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java

index 7361e29ed4b64dc9ce842eefb73aaf5b349970ec..6bca938b5e93f6588ec064fcb861e870c6f240d3 100644 (file)
@@ -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 */
index 684b18af9b6b95f1516000c8cf5ce961a8efd0f3..1e0a7646825cd89f110a2a12f63585f8abae345f 100644 (file)
@@ -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;