Merge "Fix errorprone issues" into main

This commit is contained in:
Treehugger Robot
2024-09-11 18:08:19 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -289,7 +289,7 @@ public final class Utils {
}
ThreadUtils.postOnBackgroundThread(() -> {
for (Supplier<?> supplier : suppliers) {
supplier.get();
Object unused = supplier.get();
}
ThreadUtils.postOnMainThread(runnable);
});