Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 06ab83eb authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix errorprone issues" into main am: eb2e9e47 am: bdd44e52

parents b55ded8f bdd44e52
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -288,7 +288,7 @@ public final class Utils {
        }
        ThreadUtils.postOnBackgroundThread(() -> {
            for (Supplier<?> supplier : suppliers) {
                supplier.get();
                Object unused = supplier.get();
            }
            ThreadUtils.postOnMainThread(runnable);
        });
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ public class NetworkRequestErrorDialogFragmentTest {
    @Test
    public void getConstructor_shouldNotThrowNoSuchMethodException() {
        try {
            NetworkRequestErrorDialogFragment.class.getConstructor();
            Object unused = NetworkRequestErrorDialogFragment.class.getConstructor();
        } catch (NoSuchMethodException e) {
            fail("No default constructor for configuration change!");
        }