Browse Source

Add missing @since tags

Change-Id: I27207bafe0ce31caab25ab9c0be1f22adf151783
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v3.6.0.201411121045-m1
Matthias Sohn 9 years ago
parent
commit
c017ac4c85

+ 4
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java View 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 */

+ 3
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java View 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;

Loading…
Cancel
Save