Browse Source

Add missing @since tags

Change-Id: I9657125765716c874bb6ecf8844c34749cb3b069
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v3.0.0.201305080800-m7
Matthias Sohn 11 years ago
parent
commit
e27993f1f8

+ 1
- 0
org.eclipse.jgit/src/org/eclipse/jgit/diff/RenameDetector.java View File

@@ -146,6 +146,7 @@ public class RenameDetector {
* reader to obtain objects from the repository with.
* @param cfg
* diff config specifying rename detection options.
* @since 3.0
*/
public RenameDetector(ObjectReader reader, DiffConfig cfg) {
objectReader = reader.newReader();

+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java View File

@@ -2,6 +2,8 @@ package org.eclipse.jgit.lib;

/**
* Parsed information about a checkout.
*
* @since 3.0
*/
public interface CheckoutEntry {


+ 5
- 1
org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java View File

@@ -265,7 +265,11 @@ public final class Constants {
/** Packed refs file */
public static final String PACKED_REFS = "packed-refs";

/** Excludes-file */
/**
* Excludes-file
*
* @since 3.0
*/
public static final String INFO_EXCLUDE = "info/exclude";

/** The environment variable that contains the system user name */

+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogEntry.java View File

@@ -47,6 +47,8 @@ import org.eclipse.jgit.lib.PersonIdent;

/**
* Parsed reflog entry
*
* @since 3.0
*/
public interface ReflogEntry {


+ 2
- 0
org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogReader.java View File

@@ -48,6 +48,8 @@ import java.util.List;

/**
* Utility for reading reflog entries
*
* @since 3.0
*/
public interface ReflogReader {


Loading…
Cancel
Save