Add missing @since tags

Change-Id: I27207bafe0ce31caab25ab9c0be1f22adf151783
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2014-11-03 17:06:46 +01:00
parent 696de653f3
commit c017ac4c85
2 changed files with 7 additions and 1 deletions

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

View File

@ -315,6 +315,7 @@ public IndexDiff(Repository repository, ObjectId objectId,
/**
* @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 void setIgnoreSubmoduleMode(IgnoreSubmoduleMode mode) {
/**
* A factory to producing WorkingTreeIterators
* @since 3.6
*/
public interface WorkingTreeIteratorFactory {
/**
@ -341,6 +343,7 @@ public WorkingTreeIterator getWorkingTreeIterator(Repository repo) {
* Allows higher layers to set the factory for WorkingTreeIterators.
*
* @param wTreeIt
* @since 3.6
*/
public void setWorkingTreeItFactory(WorkingTreeIteratorFactory wTreeIt) {
this.wTreeIt = wTreeIt;