Fix "Javadoc: Invalid member type qualification" warnings

Shows up as warning in Eclipse.

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: I32526df87b453220d0960e157907571490869db2
This commit is contained in:
Edwin Kempin
2020-07-13 15:36:39 +02:00
parent ea0ff6e485
commit 9ab9ca83ea

View File

@@ -51,8 +51,8 @@ public abstract class CachedProjectConfig {
} }
/** /**
* Returns the group reference for a {@link AccountGroup.UUID}, if the group is used by at least * Returns the group reference for a {@link com.google.gerrit.entities.AccountGroup.UUID}, if the
* one rule. * group is used by at least one rule.
*/ */
public Optional<GroupReference> getGroup(AccountGroup.UUID uuid) { public Optional<GroupReference> getGroup(AccountGroup.UUID uuid) {
return Optional.ofNullable(getGroups().get(uuid)); return Optional.ofNullable(getGroups().get(uuid));
@@ -91,7 +91,10 @@ public abstract class CachedProjectConfig {
/** Returns configured {@link ConfiguredMimeTypes}s. */ /** Returns configured {@link ConfiguredMimeTypes}s. */
public abstract ConfiguredMimeTypes getMimeTypes(); public abstract ConfiguredMimeTypes getMimeTypes();
/** Returns {@link SubscribeSection} keyed by the {@link Project.NameKey} they reference. */ /**
* Returns {@link SubscribeSection} keyed by the {@link
* com.google.gerrit.entities.Project.NameKey} they reference.
*/
public abstract ImmutableMap<Project.NameKey, SubscribeSection> getSubscribeSections(); public abstract ImmutableMap<Project.NameKey, SubscribeSection> getSubscribeSections();
/** Returns {@link StoredCommentLinkInfo} keyed by their name. */ /** Returns {@link StoredCommentLinkInfo} keyed by their name. */