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

/** The "update" key */ /** The "update" key */
public static final String CONFIG_KEY_UPDATE = "update"; 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"; public static final String CONFIG_KEY_IGNORE = "ignore";


/** The "compression" key */ /** The "compression" key */

+ 3
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java View File

/** /**
* @param mode * @param mode
* defines how modifications in submodules are treated * defines how modifications in submodules are treated
* @since 3.6
*/ */
public void setIgnoreSubmoduleMode(IgnoreSubmoduleMode mode) { public void setIgnoreSubmoduleMode(IgnoreSubmoduleMode mode) {
this.ignoreSubmoduleMode = mode; this.ignoreSubmoduleMode = mode;


/** /**
* A factory to producing WorkingTreeIterators * A factory to producing WorkingTreeIterators
* @since 3.6
*/ */
public interface WorkingTreeIteratorFactory { public interface WorkingTreeIteratorFactory {
/** /**
* Allows higher layers to set the factory for WorkingTreeIterators. * Allows higher layers to set the factory for WorkingTreeIterators.
* *
* @param wTreeIt * @param wTreeIt
* @since 3.6
*/ */
public void setWorkingTreeItFactory(WorkingTreeIteratorFactory wTreeIt) { public void setWorkingTreeItFactory(WorkingTreeIteratorFactory wTreeIt) {
this.wTreeIt = wTreeIt; this.wTreeIt = wTreeIt;

Loading…
Cancel
Save