Add / fix @since tags

Change-Id: I1e5bea968b3c79df4f600b75fde5b547ebadde36
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2013-10-24 08:32:47 +02:00
parent 09711a4bb9
commit 72c7618571
3 changed files with 4 additions and 2 deletions

View File

@ -68,7 +68,7 @@
/**
* Given a commit, show the most recent tag that is reachable from a commit.
*
* @since 3.1
* @since 3.2
*/
public class DescribeCommand extends GitCommand<String> {
private final RevWalk w;

View File

@ -668,7 +668,7 @@ public NameRevCommand nameRev() {
* commit in terms of the nearest git tag.
*
* @return a {@link DescribeCommand}.
* @since 3.1
* @since 3.2
*/
public DescribeCommand describe() {
return new DescribeCommand(repo);

View File

@ -77,6 +77,7 @@ public ServiceMayNotContinueException(String msg) {
* be shown to an end-user.
* @param cause
* the cause of the exception.
* @since 3.2
*/
public ServiceMayNotContinueException(String msg, Throwable cause) {
super(msg);
@ -88,6 +89,7 @@ public ServiceMayNotContinueException(String msg, Throwable cause) {
*
* @param cause
* the cause of the exception.
* @since 3.2
*/
public ServiceMayNotContinueException(Throwable cause) {
this(JGitText.get().internalServerError, cause);