[errorprone] PageRef#isStringRef: suppress UnusedMethod

See https://errorprone.info/bugpattern/UnusedMethod

Change-Id: I8c2ca60ac786e20edb7112c268d638aa2488bcb8
This commit is contained in:
Matthias Sohn 2023-09-22 13:44:11 +02:00
parent 37f60c7984
commit e5e54b61b4
1 changed files with 1 additions and 0 deletions

View File

@ -848,6 +848,7 @@ private static interface PageRef<T> {
* Whether this is a strong reference.
* @return {@code true} if this is a strong reference
*/
@SuppressWarnings("unused")
boolean isStrongRef();
}