Add missing @since tags

Change-Id: I9657125765716c874bb6ecf8844c34749cb3b069
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2013-04-30 23:55:36 +02:00
parent d7cc6eb002
commit e27993f1f8
5 changed files with 12 additions and 1 deletions

View File

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

View File

@ -2,6 +2,8 @@
/** /**
* Parsed information about a checkout. * Parsed information about a checkout.
*
* @since 3.0
*/ */
public interface CheckoutEntry { public interface CheckoutEntry {

View File

@ -265,7 +265,11 @@ public final class Constants {
/** Packed refs file */ /** Packed refs file */
public static final String PACKED_REFS = "packed-refs"; public static final String PACKED_REFS = "packed-refs";
/** Excludes-file */ /**
* Excludes-file
*
* @since 3.0
*/
public static final String INFO_EXCLUDE = "info/exclude"; public static final String INFO_EXCLUDE = "info/exclude";
/** The environment variable that contains the system user name */ /** The environment variable that contains the system user name */

View File

@ -47,6 +47,8 @@
/** /**
* Parsed reflog entry * Parsed reflog entry
*
* @since 3.0
*/ */
public interface ReflogEntry { public interface ReflogEntry {

View File

@ -48,6 +48,8 @@
/** /**
* Utility for reading reflog entries * Utility for reading reflog entries
*
* @since 3.0
*/ */
public interface ReflogReader { public interface ReflogReader {