[errorprone] Suppress FutureReturnValueIgnored in FileRepository#autoGc

Ignore the FutureReturnValueIgnored warning for the unused return value
of #gc.

Change-Id: I4e7a2f85d404962c01726f9a1d079fe4a6430a1b
This commit is contained in:
Matthias Sohn 2022-01-12 01:52:26 +01:00
parent 1e932c2e52
commit 2fed62528a
1 changed files with 1 additions and 0 deletions

View File

@ -594,6 +594,7 @@ private boolean shouldAutoDetach() {
}
/** {@inheritDoc} */
@SuppressWarnings("FutureReturnValueIgnored")
@Override
public void autoGC(ProgressMonitor monitor) {
GC gc = new GC(this);