Browse Source

Add missing @since tags

Change-Id: I9657125765716c874bb6ecf8844c34749cb3b069
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
stable-3.0
Matthias Sohn 12 years ago
parent
commit
e27993f1f8
  1. 1
      org.eclipse.jgit/src/org/eclipse/jgit/diff/RenameDetector.java
  2. 2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java
  3. 6
      org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java
  4. 2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogEntry.java
  5. 2
      org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogReader.java

1
org.eclipse.jgit/src/org/eclipse/jgit/diff/RenameDetector.java

@ -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
org.eclipse.jgit/src/org/eclipse/jgit/lib/CheckoutEntry.java

@ -2,6 +2,8 @@ package org.eclipse.jgit.lib;
/**
* Parsed information about a checkout.
*
* @since 3.0
*/
public interface CheckoutEntry {

6
org.eclipse.jgit/src/org/eclipse/jgit/lib/Constants.java

@ -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
org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogEntry.java

@ -47,6 +47,8 @@ import org.eclipse.jgit.lib.PersonIdent;
/**
* Parsed reflog entry
*
* @since 3.0
*/
public interface ReflogEntry {

2
org.eclipse.jgit/src/org/eclipse/jgit/lib/ReflogReader.java

@ -48,6 +48,8 @@ import java.util.List;
/**
* Utility for reading reflog entries
*
* @since 3.0
*/
public interface ReflogReader {

Loading…
Cancel
Save