Fix Javadoc Invalid member type qualification warnings

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I6225b409a6acc371244aff0a44799c22ffbfe940
This commit is contained in:
Edwin Kempin
2021-01-15 13:08:21 +01:00
parent 3125640819
commit 9081923095
3 changed files with 10 additions and 8 deletions

View File

@@ -138,8 +138,9 @@ public abstract class CurrentUser {
}
/**
* Returns all {@link ExternalId.Key}s associated with this user. For {@link AnonymousUser} and
* other users that don't represent a person user or service account, this set will be empty.
* Returns all {@link com.google.gerrit.server.account.externalids.ExternalId.Key}s associated
* with this user. For {@link AnonymousUser} and other users that don't represent a person user or
* service account, this set will be empty.
*/
public ImmutableSet<ExternalId.Key> getExternalIdKeys() {
return ImmutableSet.of();

View File

@@ -138,8 +138,9 @@ public class ChangeNotes extends AbstractChangeNotes<ChangeNotes> {
}
/**
* Create change notes based on a {@link Change.Id}. This requires using the Change index and
* should only be used when {@link Project.NameKey} and the numeric change ID are not available.
* Create change notes based on a {@link com.google.gerrit.entities.Change.Id}. This requires
* using the Change index and should only be used when {@link
* com.google.gerrit.entities.Project.NameKey} and the numeric change ID are not available.
*/
public ChangeNotes createCheckedUsingIndexLookup(Change.Id changeId) {
InternalChangeQuery query = queryProvider.get().noFields();
@@ -155,9 +156,9 @@ public class ChangeNotes extends AbstractChangeNotes<ChangeNotes> {
}
/**
* Create change notes based on a list of {@link Change.Id}s. This requires using the Change
* index and should only be used when {@link Project.NameKey} and the numeric change ID are not
* available.
* Create change notes based on a list of {@link com.google.gerrit.entities.Change.Id}s. This
* requires using the Change index and should only be used when {@link
* com.google.gerrit.entities.Project.NameKey} and the numeric change ID are not available.
*/
public List<ChangeNotes> createUsingIndexLookup(Collection<Change.Id> changeIds) {
List<ChangeNotes> notes = new ArrayList<>();

View File

@@ -1027,7 +1027,7 @@ class ChangeNotesParser {
* @return {@link Optional} value of the parsed footer or {@code null} if the footer is missing in
* this commit.
* @throws ConfigInvalidException if the footer value could not be parsed as a valid {@link
* PatchSet.Id}.
* com.google.gerrit.entities.PatchSet.Id}.
*/
@Nullable
private Optional<PatchSet.Id> parseCherryPickOf(ChangeNotesCommit commit)