From 7f6aaa57682f115464c3b7c531cc34a482b42544 Mon Sep 17 00:00:00 2001 From: Matthias Sohn Date: Tue, 19 Dec 2017 23:21:57 +0100 Subject: [PATCH] Fix javadoc leftovers in org.eclipse.jgit api package Change-Id: I2150889b5ed04e8739e2367fc9023b750b516398 Signed-off-by: Matthias Sohn Signed-off-by: David Pursehouse --- .../src/org/eclipse/jgit/api/CheckoutCommand.java | 2 +- .../src/org/eclipse/jgit/api/TransportCommand.java | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java index 507168816..aa9939edd 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/CheckoutCommand.java @@ -731,7 +731,7 @@ public class CheckoutCommand extends GitCommand { } /** - *

getResult.

+ * Get the result, never null * * @return the result, never null */ diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java index 9032329ce..9c915377d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/TransportCommand.java @@ -129,11 +129,10 @@ public abstract class TransportCommand extends return self(); } - /** @return {@code this} */ /** - * Return this command + * Return this command cast to {@code C} * - * @return this command + * @return {@code this} cast to {@code C} */ @SuppressWarnings("unchecked") protected final C self() {