Fix InvalidInlineTag error flagged by error prone

Running recent error prone version complaining on that code:

RefDatabase.java:444: error: [InvalidInlineTag] Tag name `linkObjectId`
is unknown.
	 * Includes peeled {@linkObjectId}s. This is the inverse lookup of
	                   ^
    (see https://errorprone.info/bugpattern/InvalidInlineTag)

Bug: 562756
Change-Id: If91da51d5138fb753c0550eeeb9e3883a394123d
Signed-off-by: David Ostrovsky <david@ostrovsky.org>
This commit is contained in:
David Ostrovsky 2020-05-22 07:53:59 +02:00 committed by David Pursehouse
parent 3e2ec7e5e8
commit 7861f82029
2 changed files with 2 additions and 2 deletions

View File

@ -280,7 +280,7 @@ public boolean hasFastTipsWithSha1() throws IOException {
/**
* Returns all refs that resolve directly to the given {@link ObjectId}.
* Includes peeled {@linkObjectId}s.
* Includes peeled {@link ObjectId}s.
*
* @param id
* {@link ObjectId} to resolve

View File

@ -441,7 +441,7 @@ public List<Ref> getRefsByPrefix(String... prefixes) throws IOException {
/**
* Returns all refs that resolve directly to the given {@link ObjectId}.
* Includes peeled {@linkObjectId}s. This is the inverse lookup of
* Includes peeled {@link ObjectId}s. This is the inverse lookup of
* {@link #exactRef(String...)}.
*
* <p>