Browse Source

Add missing @since tags

Change-Id: I27207bafe0ce31caab25ab9c0be1f22adf151783
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-3.6
Matthias Sohn 10 years ago
parent
commit
c017ac4c85
  1. 5
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ConfigConstants.java
  2. 3
      org.eclipse.jgit/src/org/eclipse/jgit/lib/IndexDiff.java

5
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 */

3
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;

Loading…
Cancel
Save