Fix some Javadoc links which are reported to be broken

Our Bazel build issued three warnings about broken Javadoc links. Inside
of an IDE, those links can be resolved without issues, though.

The problematic part seems to be the use of inner classes as method
parameters in the link definition. The warning goes away if we add the
enclosing class.

Bug: Issue 8845
Change-Id: Ic0332c50852680d05880857f0fe285ae5954503c
This commit is contained in:
Alice Kober-Sotzek
2018-05-18 13:39:47 +02:00
parent 4cc65a91a4
commit ad0caab503
2 changed files with 6 additions and 5 deletions

View File

@@ -106,7 +106,8 @@ import org.eclipse.jgit.lib.Repository;
* <li>binding {@link GitReferenceUpdated#DISABLED} and * <li>binding {@link GitReferenceUpdated#DISABLED} and
* <li>passing an {@link * <li>passing an {@link
* com.google.gerrit.server.account.externalids.ExternalIdNotes.FactoryNoReindex} factory as * com.google.gerrit.server.account.externalids.ExternalIdNotes.FactoryNoReindex} factory as
* parameter of {@link AccountsUpdate.Factory#create(IdentifiedUser, ExternalIdNotesLoader)} * parameter of {@link AccountsUpdate.Factory#create(IdentifiedUser,
* ExternalIdNotes.ExternalIdNotesLoader)}
* </ul> * </ul>
* *
* <p>If there are concurrent account updates updating the user branch in NoteDb may fail with * <p>If there are concurrent account updates updating the user branch in NoteDb may fail with

View File

@@ -142,8 +142,8 @@ public abstract class InternalGroupUpdate {
* InternalGroupUpdate}. * InternalGroupUpdate}.
* *
* <p>This modification can be tweaked further and passed to {@link * <p>This modification can be tweaked further and passed to {@link
* #setMemberModification(MemberModification)} in order to combine multiple member additions, * #setMemberModification(InternalGroupUpdate.MemberModification)} in order to combine multiple
* deletions, or other modifications into one update. * member additions, deletions, or other modifications into one update.
*/ */
public abstract MemberModification getMemberModification(); public abstract MemberModification getMemberModification();
@@ -155,8 +155,8 @@ public abstract class InternalGroupUpdate {
* InternalGroupUpdate}. * InternalGroupUpdate}.
* *
* <p>This modification can be tweaked further and passed to {@link * <p>This modification can be tweaked further and passed to {@link
* #setSubgroupModification(SubgroupModification)} in order to combine multiple subgroup * #setSubgroupModification(InternalGroupUpdate.SubgroupModification)} in order to combine
* additions, deletions, or other modifications into one update. * multiple subgroup additions, deletions, or other modifications into one update.
*/ */
public abstract SubgroupModification getSubgroupModification(); public abstract SubgroupModification getSubgroupModification();